Este resumen se corresponde con el capítulo 2 del NLTK Book Accessing Text Corpora and Lexical Resources. La lectura del capítulo es muy recomendable.
NLTK nos da acceso directo a varias colecciones de textos. Para empezar, vamos a juguetear un poco con los libros del Proyecto Gutenberg, un repositorio público de libros libres y/o sin derechos de copyright en vigor.
Antes de nada, necesitamos importar el módulo gutenberg que está en la librería nltk.corpus.
In [1]:
from nltk.corpus import gutenberg
Podemos listar el catálogo de libros del Proyecto Gutenberg disponibles desde NLTK a través del método nltk.corpus.gutenberg.fileids
In [2]:
print(gutenberg.fileids())
['austen-emma.txt', 'austen-persuasion.txt', 'austen-sense.txt', 'bible-kjv.txt', 'blake-poems.txt', 'bryant-stories.txt', 'burgess-busterbrown.txt', 'carroll-alice.txt', 'chesterton-ball.txt', 'chesterton-brown.txt', 'chesterton-thursday.txt', 'edgeworth-parents.txt', 'melville-moby_dick.txt', 'milton-paradise.txt', 'shakespeare-caesar.txt', 'shakespeare-hamlet.txt', 'shakespeare-macbeth.txt', 'whitman-leaves.txt']
Para cargar alguno de estos libros en variables y poder manipularlos directamente, podemos utilizar varios métodos.
gutenberg.raw recupera el texto como una única cadena de caracteres.gutenberg.words recupera el texto tokenizado en palabras. El método devuelve una lista palabras.gutenberg.sents recupera el texto segmentado por oraciones. El método devuelve una lista de oraciones. Cada oración es a su vez una lista de palabras.gutenberg.paras recupera el texto segmentado por párrafos. El método devuelve una lista de párrafos. Cada párrafo es una lista de oraciones, cada oración es a su vez una lista de palabras.
In [3]:
# cargo la vesión 'cruda' de un par de libros. Como son libros del Proyecto Gutenberg, se trata de ficheros en texto plano
alice = gutenberg.raw('carroll-alice.txt')
print(alice[:200]) # imprimo los primeros 200 caracteres del libro de Alicia
bible = gutenberg.raw('bible-kjv.txt')
print(bible[:200]) # imprimo los primeros 200 caracteres de la Biblia
[Alice's Adventures in Wonderland by Lewis Carroll 1865]
CHAPTER I. Down the Rabbit-Hole
Alice was beginning to get very tired of sitting by her sister on the
bank, and of having nothing to do: once
[The King James Bible]
The Old Testament of the King James Bible
The First Book of Moses: Called Genesis
1:1 In the beginning God created the heaven and the earth.
1:2 And the earth was without
In [4]:
# segmentamos el texto en palabras teniendo en cuenta los espacios
bible_tokens = bible.split()
# cargamos la versión de la Biblia segmentado en palabras
bible_words = gutenberg.words('bible-kjv.txt')
# no da el mismo número de tokens
print(len(bible_tokens), len(bible_words))
print(bible_tokens[:100])
print('\n', '-' * 75, '\n')
print(bible_words[:100])
821133 1010654
['[The', 'King', 'James', 'Bible]', 'The', 'Old', 'Testament', 'of', 'the', 'King', 'James', 'Bible', 'The', 'First', 'Book', 'of', 'Moses:', 'Called', 'Genesis', '1:1', 'In', 'the', 'beginning', 'God', 'created', 'the', 'heaven', 'and', 'the', 'earth.', '1:2', 'And', 'the', 'earth', 'was', 'without', 'form,', 'and', 'void;', 'and', 'darkness', 'was', 'upon', 'the', 'face', 'of', 'the', 'deep.', 'And', 'the', 'Spirit', 'of', 'God', 'moved', 'upon', 'the', 'face', 'of', 'the', 'waters.', '1:3', 'And', 'God', 'said,', 'Let', 'there', 'be', 'light:', 'and', 'there', 'was', 'light.', '1:4', 'And', 'God', 'saw', 'the', 'light,', 'that', 'it', 'was', 'good:', 'and', 'God', 'divided', 'the', 'light', 'from', 'the', 'darkness.', '1:5', 'And', 'God', 'called', 'the', 'light', 'Day,', 'and', 'the', 'darkness']
---------------------------------------------------------------------------
['[', 'The', 'King', 'James', 'Bible', ']', 'The', 'Old', 'Testament', 'of', 'the', 'King', 'James', 'Bible', 'The', 'First', 'Book', 'of', 'Moses', ':', 'Called', 'Genesis', '1', ':', '1', 'In', 'the', 'beginning', 'God', 'created', 'the', 'heaven', 'and', 'the', 'earth', '.', '1', ':', '2', 'And', 'the', 'earth', 'was', 'without', 'form', ',', 'and', 'void', ';', 'and', 'darkness', 'was', 'upon', 'the', 'face', 'of', 'the', 'deep', '.', 'And', 'the', 'Spirit', 'of', 'God', 'moved', 'upon', 'the', 'face', 'of', 'the', 'waters', '.', '1', ':', '3', 'And', 'God', 'said', ',', 'Let', 'there', 'be', 'light', ':', 'and', 'there', 'was', 'light', '.', '1', ':', '4', 'And', 'God', 'saw', 'the', 'light', ',', 'that', 'it']
In [5]:
# cargo la versión de Alicia segmentada en palabras
alice_words = gutenberg.words('carroll-alice.txt')
print(alice_words[:20]) # imprimo las primeros 20 palabras
print(len(alice_words))
['[', 'Alice', "'", 's', 'Adventures', 'in', 'Wonderland', 'by', 'Lewis', 'Carroll', '1865', ']', 'CHAPTER', 'I', '.', 'Down', 'the', 'Rabbit', '-', 'Hole']
34110
In [6]:
# cargo la versión de Alicia segmentada en oraciones
alice_sents = gutenberg.sents('carroll-alice.txt')
print('Alice tiene', len(alice_sents), 'oraciones')
print(alice_sents[2:5]) # imprimo la tercera, cuarta y quinta oración
Alice tiene 1703 oraciones
[['Down', 'the', 'Rabbit', '-', 'Hole'], ['Alice', 'was', 'beginning', 'to', 'get', 'very', 'tired', 'of', 'sitting', 'by', 'her', 'sister', 'on', 'the', 'bank', ',', 'and', 'of', 'having', 'nothing', 'to', 'do', ':', 'once', 'or', 'twice', 'she', 'had', 'peeped', 'into', 'the', 'book', 'her', 'sister', 'was', 'reading', ',', 'but', 'it', 'had', 'no', 'pictures', 'or', 'conversations', 'in', 'it', ',', "'", 'and', 'what', 'is', 'the', 'use', 'of', 'a', 'book', ",'", 'thought', 'Alice', "'", 'without', 'pictures', 'or', 'conversation', "?'"], ['So', 'she', 'was', 'considering', 'in', 'her', 'own', 'mind', '(', 'as', 'well', 'as', 'she', 'could', ',', 'for', 'the', 'hot', 'day', 'made', 'her', 'feel', 'very', 'sleepy', 'and', 'stupid', '),', 'whether', 'the', 'pleasure', 'of', 'making', 'a', 'daisy', '-', 'chain', 'would', 'be', 'worth', 'the', 'trouble', 'of', 'getting', 'up', 'and', 'picking', 'the', 'daisies', ',', 'when', 'suddenly', 'a', 'White', 'Rabbit', 'with', 'pink', 'eyes', 'ran', 'close', 'by', 'her', '.']]
In [7]:
# cargo la versión de Alicia segmentada en párrafos
alice_paras = gutenberg.paras('carroll-alice.txt')
print('Alice tiene', len(alice_paras), 'párrafos')
# imprimo los cinco primeros
for para in alice_paras[:5]:
print(para)
print('\n', '-' * 75, '\n')
Alice tiene 817 párrafos
[['[', 'Alice', "'", 's', 'Adventures', 'in', 'Wonderland', 'by', 'Lewis', 'Carroll', '1865', ']']]
---------------------------------------------------------------------------
[['CHAPTER', 'I', '.'], ['Down', 'the', 'Rabbit', '-', 'Hole']]
---------------------------------------------------------------------------
[['Alice', 'was', 'beginning', 'to', 'get', 'very', 'tired', 'of', 'sitting', 'by', 'her', 'sister', 'on', 'the', 'bank', ',', 'and', 'of', 'having', 'nothing', 'to', 'do', ':', 'once', 'or', 'twice', 'she', 'had', 'peeped', 'into', 'the', 'book', 'her', 'sister', 'was', 'reading', ',', 'but', 'it', 'had', 'no', 'pictures', 'or', 'conversations', 'in', 'it', ',', "'", 'and', 'what', 'is', 'the', 'use', 'of', 'a', 'book', ",'", 'thought', 'Alice', "'", 'without', 'pictures', 'or', 'conversation', "?'"]]
---------------------------------------------------------------------------
[['So', 'she', 'was', 'considering', 'in', 'her', 'own', 'mind', '(', 'as', 'well', 'as', 'she', 'could', ',', 'for', 'the', 'hot', 'day', 'made', 'her', 'feel', 'very', 'sleepy', 'and', 'stupid', '),', 'whether', 'the', 'pleasure', 'of', 'making', 'a', 'daisy', '-', 'chain', 'would', 'be', 'worth', 'the', 'trouble', 'of', 'getting', 'up', 'and', 'picking', 'the', 'daisies', ',', 'when', 'suddenly', 'a', 'White', 'Rabbit', 'with', 'pink', 'eyes', 'ran', 'close', 'by', 'her', '.']]
---------------------------------------------------------------------------
[['There', 'was', 'nothing', 'so', 'VERY', 'remarkable', 'in', 'that', ';', 'nor', 'did', 'Alice', 'think', 'it', 'so', 'VERY', 'much', 'out', 'of', 'the', 'way', 'to', 'hear', 'the', 'Rabbit', 'say', 'to', 'itself', ',', "'", 'Oh', 'dear', '!'], ['Oh', 'dear', '!'], ['I', 'shall', 'be', 'late', "!'"], ['(', 'when', 'she', 'thought', 'it', 'over', 'afterwards', ',', 'it', 'occurred', 'to', 'her', 'that', 'she', 'ought', 'to', 'have', 'wondered', 'at', 'this', ',', 'but', 'at', 'the', 'time', 'it', 'all', 'seemed', 'quite', 'natural', ');', 'but', 'when', 'the', 'Rabbit', 'actually', 'TOOK', 'A', 'WATCH', 'OUT', 'OF', 'ITS', 'WAISTCOAT', '-', 'POCKET', ',', 'and', 'looked', 'at', 'it', ',', 'and', 'then', 'hurried', 'on', ',', 'Alice', 'started', 'to', 'her', 'feet', ',', 'for', 'it', 'flashed', 'across', 'her', 'mind', 'that', 'she', 'had', 'never', 'before', 'seen', 'a', 'rabbit', 'with', 'either', 'a', 'waistcoat', '-', 'pocket', ',', 'or', 'a', 'watch', 'to', 'take', 'out', 'of', 'it', ',', 'and', 'burning', 'with', 'curiosity', ',', 'she', 'ran', 'across', 'the', 'field', 'after', 'it', ',', 'and', 'fortunately', 'was', 'just', 'in', 'time', 'to', 'see', 'it', 'pop', 'down', 'a', 'large', 'rabbit', '-', 'hole', 'under', 'the', 'hedge', '.']]
---------------------------------------------------------------------------
Fíjate en que cada método devuelve una estructura de datos diferente: desde una única cadena a listas de listas anidadas. Para que tengas claro las dimensiones de cada uno, podemos imprimir el número de caracteres, palabras, oraciones y párrafos del libro.
In [8]:
print(len(alice), 'caracteres')
print(len(alice_words), 'palabras')
print(len(alice_sents), 'oraciones')
print(len(alice_paras), 'párrafos')
144395 caracteres
34110 palabras
1703 oraciones
817 párrafos
Vamos a imprimir algunas estadísticas para todos los libros del Proyecto Gutenberg disponibles. Para cada libro, impriremos por pantalla el promedio de caracteres por palabra, el promedio de palabras por oración y el promedio de oraciones por párrafo.
In [9]:
# para cada libro que está disponible en el objeto gutenberg
for libro in gutenberg.fileids():
caracteres = len(gutenberg.raw(libro))
palabras = len(gutenberg.words(libro))
oraciones = len(gutenberg.sents(libro))
parrafos = len(gutenberg.paras(libro))
print(libro[:-4], '\t', round(caracteres/palabras, 2), '\t', round(palabras/oraciones, 2), '\t', round(oraciones/parrafos, 2))
austen-emma 4.61 24.82 3.27
austen-persuasion 4.75 26.2 3.63
austen-sense 4.75 28.32 2.68
bible-kjv 4.29 33.57 1.22
blake-poems 4.57 19.07 1.54
bryant-stories 4.49 19.41 2.4
burgess-busterbrown 4.46 17.99 3.96
carroll-alice 4.23 20.03 2.08
chesterton-ball 4.72 20.3 2.98
chesterton-brown 4.72 22.61 3.28
chesterton-thursday 4.63 18.5 2.91
edgeworth-parents 4.44 20.59 2.75
melville-moby_dick 4.77 25.93 3.6
milton-paradise 4.84 52.31 63.83
shakespeare-caesar 4.35 11.94 2.91
shakespeare-hamlet 4.36 12.03 3.27
shakespeare-macbeth 4.34 12.13 2.81
whitman-leaves 4.59 36.44 1.72
El módulo nltk.corpus permite acceder a otras colecciones de textos en otras lenguas (lista completa aquí). Vamos a probar con un corpus de noticias en castellano llamado cess_esp que incluye anotación morfo-sintáctica.
In [10]:
from nltk.corpus import cess_esp
# la versión en crudo de este corpus contiene información morfosintáctica con un formato que todavía no conocemos.
# en este caso, pasamos directamente a trabajar con los textos segmentados
# cargo el primer documento del corpus segmentado en palabras
palabras = cess_esp.words(cess_esp.fileids()[0])
print(palabras[:50])
print('\n', '-' * 75, '\n')
# y segmentado en oraciones
oraciones = cess_esp.sents(cess_esp.fileids()[0])
print(oraciones[:5])
['El', 'grupo', 'estatal', 'Electricité_de_France', '-Fpa-', 'EDF', '-Fpt-', 'anunció', 'hoy', ',', 'jueves', ',', 'la', 'compra', 'del', '51_por_ciento', 'de', 'la', 'empresa', 'mexicana', 'Electricidad_Águila_de_Altamira', '-Fpa-', 'EAA', '-Fpt-', ',', 'creada', 'por', 'el', 'japonés', 'Mitsubishi_Corporation', 'para', 'poner_en_marcha', 'una', 'central', 'de', 'gas', 'de', '495', 'megavatios', '.', 'Una', 'portavoz', 'de', 'EDF', 'explicó', 'a', 'EFE', 'que', 'el', 'proyecto']
---------------------------------------------------------------------------
[['El', 'grupo', 'estatal', 'Electricité_de_France', '-Fpa-', 'EDF', '-Fpt-', 'anunció', 'hoy', ',', 'jueves', ',', 'la', 'compra', 'del', '51_por_ciento', 'de', 'la', 'empresa', 'mexicana', 'Electricidad_Águila_de_Altamira', '-Fpa-', 'EAA', '-Fpt-', ',', 'creada', 'por', 'el', 'japonés', 'Mitsubishi_Corporation', 'para', 'poner_en_marcha', 'una', 'central', 'de', 'gas', 'de', '495', 'megavatios', '.'], ['Una', 'portavoz', 'de', 'EDF', 'explicó', 'a', 'EFE', 'que', 'el', 'proyecto', 'para', 'la', 'construcción', 'de', 'Altamira_2', ',', 'al', 'norte', 'de', 'Tampico', ',', 'prevé', 'la', 'utilización', 'de', 'gas', 'natural', 'como', 'combustible', 'principal', 'en', 'una', 'central', 'de', 'ciclo', 'combinado', 'que', 'debe', 'empezar', 'a', 'funcionar', 'en', 'mayo_del_2002', '.'], ['La', 'electricidad', 'producida', 'pasará', 'a', 'la', 'red', 'eléctrica', 'pública', 'de', 'México', 'en_virtud_de', 'un', 'acuerdo', 'de', 'venta', 'de', 'energía', 'de', 'EAA', 'con', 'la', 'Comisión_Federal_de_Electricidad', '-Fpa-', 'CFE', '-Fpt-', 'por', 'una', 'duración', 'de', '25', 'años', '.'], ['EDF', ',', 'que', 'no', 'quiso', 'revelar', 'cuánto', '*0*', 'pagó', 'por', 'su', 'participación', 'mayoritaria', 'en', 'EAA', ',', 'intervendrá', 'como', 'asistente', 'en', 'la', 'construcción', 'de', 'Altamira_2', 'y', ',', 'posteriormente', ',', '*0*', 'se', 'encargará', 'de', 'explotarla', 'como', 'principal', 'accionista', '.'], ['EDF', 'y', 'Mitsubishi', 'participaron', 'en', '1998', 'en', 'la', 'licitación', 'de', 'licencias', 'para', 'construir', 'centrales', 'eléctricas', 'en', 'México', 'y', '*0*', 'se', 'quedaron', 'con', 'dos', 'cada', 'una', ':', 'Río_Bravo', 'y', 'Saltillo', 'para', 'la', 'compañía', 'francesa', 'y', 'Altamira', 'y', 'Tuxpán', 'para', 'la', 'japonesa', '.']]
In [11]:
print(" ".join(palabras[:100]))
El grupo estatal Electricité_de_France -Fpa- EDF -Fpt- anunció hoy , jueves , la compra del 51_por_ciento de la empresa mexicana Electricidad_Águila_de_Altamira -Fpa- EAA -Fpt- , creada por el japonés Mitsubishi_Corporation para poner_en_marcha una central de gas de 495 megavatios . Una portavoz de EDF explicó a EFE que el proyecto para la construcción de Altamira_2 , al norte de Tampico , prevé la utilización de gas natural como combustible principal en una central de ciclo combinado que debe empezar a funcionar en mayo_del_2002 . La electricidad producida pasará a la red eléctrica pública de México en_virtud_de un acuerdo de venta
De manera similar a como hemos hecho sacando estadísticas de las obras disponibles en el corpus gutenberg, vamos a calcular la longitud promedio de palabras y el número de palabras promedio por oración, para los diez primeros documentos de este corpus cess_esp.
Fíjate en la estructura de este ejemplo: contiene bucles anidados.
In [12]:
# para cada documento que está entre los 10 primeros del corpus
for documento in cess_esp.fileids()[:10]:
# carga el texto segmentado en palabras
palabras = cess_esp.words(documento)
# y en oraciones
oraciones = cess_esp.sents(documento)
# pon el contador de caracteres a 0
caracteres = 0
# para cada palabra dentro de la lista de palabras del documento
for palabra in palabras:
# ve sumando al contador el número de caracteres que tiene la palabra en cuestión
caracteres = caracteres + len(palabra)
# cuando hayas terminado, divide la longitud total del texto entre el número de palabras
longitud_promedio = caracteres / len(palabras)
# imprime el nombre del documento, la longitud de la palabra y el número de palabras por oración
print(documento[:-4], '\t', round(longitud_promedio, 2), '\t', round(len(palabras)/len(oraciones), 2))
10017_20000413 5.04 42.17
10044_20000313 4.27 47.62
10049_20001114 5.84 31.11
10055_20000713 4.98 30.89
10080_20000914 4.6 34.0
10084_20000313_1 4.54 42.36
10084_20000313_2 4.71 24.0
10127_20001013_1 4.63 40.1
10127_20001013_2 4.71 32.1
10127_20001013_3 4.72 35.29
Los libros del Proyecto Gutenberg constituyen el tipo de corpus más sencillo: no está anotado (no incluye ningún tipo de información lingüística) ni categorizado.
El Corpus de Brown fue el primer gran corpus orientado a tareas de PLN. Desarrollado en la Universidad de Brown, contiene más de un millón de palabras provenientes de 500 fuentes. La principal catacterística de este corpus es que sus textos están categorizados por género.
In [13]:
from nltk.corpus import brown
Como en los libros del Proyecto Gutenberg, aquí también podemos imprimir los nombres de los ficheros. En este caso son poco significativos, nos nos dicen nada del contenido.
In [14]:
# Brown está formado por 500 documentos
print(len(brown.fileids()))
# imprimimos solos los 10 primeros
print(brown.fileids()[:10])
500
['ca01', 'ca02', 'ca03', 'ca04', 'ca05', 'ca06', 'ca07', 'ca08', 'ca09', 'ca10']
Una de las principales diferencias con otros corpus vistos anteriormente es que el de Brown está categorizado: los textos están agrupados según su género o temática. Y en este caso, los nombres de las categorías sí nos permiten intuir el contenido de los textos.
In [15]:
print(brown.categories())
['adventure', 'belles_lettres', 'editorial', 'fiction', 'government', 'hobbies', 'humor', 'learned', 'lore', 'mystery', 'news', 'religion', 'reviews', 'romance', 'science_fiction']
De manera similar a los libros del Proyecto Gutenberg, podemos acceder a los textos de este corpus a través de los métodos brown.raw, brown.words, brown.sents y brown.paras. Además, podemos acceder a una categoría de textos concretas si lo especificamos como argumento.
In [16]:
news_words = brown.words(categories='news')
scifi_sents = brown.sents(categories='science_fiction')
In [17]:
print(news_words[:50])
print('\n', '-' * 75, '\n')
print(scifi_sents[:3])
['The', 'Fulton', 'County', 'Grand', 'Jury', 'said', 'Friday', 'an', 'investigation', 'of', "Atlanta's", 'recent', 'primary', 'election', 'produced', '``', 'no', 'evidence', "''", 'that', 'any', 'irregularities', 'took', 'place', '.', 'The', 'jury', 'further', 'said', 'in', 'term-end', 'presentments', 'that', 'the', 'City', 'Executive', 'Committee', ',', 'which', 'had', 'over-all', 'charge', 'of', 'the', 'election', ',', '``', 'deserves', 'the', 'praise']
---------------------------------------------------------------------------
[['Now', 'that', 'he', 'knew', 'himself', 'to', 'be', 'self', 'he', 'was', 'free', 'to', 'grok', 'ever', 'closer', 'to', 'his', 'brothers', ',', 'merge', 'without', 'let', '.'], ["Self's", 'integrity', 'was', 'and', 'is', 'and', 'ever', 'had', 'been', '.'], ['Mike', 'stopped', 'to', 'cherish', 'all', 'his', 'brother', 'selves', ',', 'the', 'many', 'threes-fulfilled', 'on', 'Mars', ',', 'corporate', 'and', 'discorporate', ',', 'the', 'precious', 'few', 'on', 'Earth', '--', 'the', 'unknown', 'powers', 'of', 'three', 'on', 'Earth', 'that', 'would', 'be', 'his', 'to', 'merge', 'with', 'and', 'cherish', 'now', 'that', 'at', 'last', 'long', 'waiting', 'he', 'grokked', 'and', 'cherished', 'himself', '.']]
Vamos a sacar provecho de la categorización de los textos de este corpus. Para ello, vamos a calcular la frecuencia de distribución de distintos verbos modales para cada categoría. Para ello vamos a calcular una distribución de frecuencia condicional que calcule la frecuencia de cada palabra para cada categoría.
No te preocupes si no entiendes la sintaxis para crear tablas de frecuencias condicionales a través del objeto ConditionalFreqDist. Créeme, ese objeto calcula frecuencias de palabras atendiendo a la categoría en la que aparecen y crea una especie de diccionario de diccionarios.
In [18]:
from nltk import ConditionalFreqDist
modals = 'can could would should must may might'.split()
modals_cfd = ConditionalFreqDist(
(category, word)
for category in brown.categories()
for word in brown.words(categories=category)
)
# la sintaxis anterior contiene varios bucles anidados y es equivalente a:
# for category in brown.categories():
# for word in brown.words(categories=category):
# ConditionalFreqDist(category, word)
Una vez tenemos calculada la frecuencia de distribución condicional, podemos pintar los valores fácilmente en forma de tabla a través del método .tabulate, especificando como condiciones cada una de las categorías, y como muestras los verbos modales del inglés que hemos definido.
In [19]:
modals_cfd.tabulate(conditions=brown.categories(), samples=modals)
print('\n', '-' * 75, '\n')
# imprimo solo algunos verbos modales para la categoría fiction
modals_cfd.tabulate(conditions=['fiction'], samples=['can', 'should', 'would'])
can could would should must may might
adventure 46 151 191 15 27 5 58
belles_lettres 246 213 392 102 170 207 113
editorial 121 56 180 88 53 74 39
fiction 37 166 287 35 55 8 44
government 117 38 120 112 102 153 13
hobbies 268 58 78 73 83 131 22
humor 16 30 56 7 9 8 8
learned 365 159 319 171 202 324 128
lore 170 141 186 76 96 165 49
mystery 42 141 186 29 30 13 57
news 93 86 244 59 50 66 38
religion 82 59 68 45 54 78 12
reviews 45 40 47 18 19 45 26
romance 74 193 244 32 45 11 51
science_fiction 16 49 79 3 8 4 12
---------------------------------------------------------------------------
can should would
fiction 37 35 287
Las cifras que hemos mostrado en las tablas anteriores se refieren a las frecuencias absolutas de cada verbo modal en cada categoría. Realizar comparaciones así no es acertado, porque es posible que cada categoría tenga un número de documentos (y de palabras) diferente.
Vamos a comprobar si esto es cierto. ¿Está equilibrada la colección o tenemos algunos géneros sobrerrepresentados?
In [20]:
for categoria in brown.categories():
print(categoria, len(brown.words(categories=categoria)))
adventure 69342
belles_lettres 173096
editorial 61604
fiction 68488
government 70117
hobbies 82345
humor 21695
learned 181888
lore 110299
mystery 57169
news 100554
religion 39399
reviews 40704
romance 70022
science_fiction 14470
Como vemos, el número de palabras no está equilibado. Tenemos muchos más datos en las categorías belles_lettres y learned que en science_fiction o humor, por ejemplo.
Calculemos a continuación la frecuencia relativa de estos verbos modales, atendiendo al género. Para ello, necesitamos dividir la frecuencia absoluta de cada modal entre el número de palabras total de cada categoría.
In [21]:
for categoria in brown.categories():
# ¿cuántas palabras tenemos en cada categoría?
longitud = len(brown.words(categories=categoria))
print('\n', categoria)
print('\n', '-' * 75, '\n')
for palabra in modals:
print(palabra, '->', modals_cfd[categoria][palabra]/longitud)
adventure
---------------------------------------------------------------------------
can -> 0.0006633786161345216
could -> 0.002177612413832886
would -> 0.0027544633843846443
should -> 0.00021631911395690923
must -> 0.00038937440512243663
may -> 7.210637131896974e-05
might -> 0.000836433907300049
belles_lettres
---------------------------------------------------------------------------
can -> 0.0014211766880806026
could -> 0.0012305310348014974
would -> 0.002264639275315432
should -> 0.0005892683828626889
must -> 0.000982113971437815
may -> 0.001195868188750751
might -> 0.000652816933955724
editorial
---------------------------------------------------------------------------
can -> 0.001964158171547302
could -> 0.0009090318810466853
would -> 0.0029218881890786313
should -> 0.0014284786702162197
must -> 0.0008603337445620414
may -> 0.0012012206999545483
might -> 0.0006330757743003701
fiction
---------------------------------------------------------------------------
can -> 0.0005402406260950823
could -> 0.002423782268426586
would -> 0.004190515126737531
should -> 0.0005110384300899427
must -> 0.0008030603901413386
may -> 0.00011680878402055835
might -> 0.000642448312113071
government
---------------------------------------------------------------------------
can -> 0.0016686395595932513
could -> 0.0005419513099533637
would -> 0.0017114251893264115
should -> 0.0015973301767046508
must -> 0.0014547114109274499
may -> 0.0021820671163911747
might -> 0.00018540439551036124
hobbies
---------------------------------------------------------------------------
can -> 0.0032545995506709576
could -> 0.0007043536341004311
would -> 0.0009472341975833384
should -> 0.0008865140567126115
must -> 0.0010079543384540653
may -> 0.0015908676908130428
might -> 0.000267168619831198
humor
---------------------------------------------------------------------------
can -> 0.0007374971191518783
could -> 0.0013828070984097719
would -> 0.0025812399170315743
should -> 0.0003226549896289468
must -> 0.00041484212952293156
may -> 0.00036874855957593915
might -> 0.00036874855957593915
learned
---------------------------------------------------------------------------
can -> 0.002006729415904293
could -> 0.0008741643209007741
would -> 0.001753826530612245
should -> 0.0009401389866291344
must -> 0.0011105735397607319
may -> 0.0017813159746657284
might -> 0.0007037297677691766
lore
---------------------------------------------------------------------------
can -> 0.0015412651066646116
could -> 0.0012783434119982956
would -> 0.0016863253519977515
should -> 0.0006890361653324146
must -> 0.0008703614719988395
may -> 0.0014959337799980055
might -> 0.000444247001332741
mystery
---------------------------------------------------------------------------
can -> 0.0007346638912697441
could -> 0.002466371634976998
would -> 0.0032535115184802953
should -> 0.0005072679249243471
must -> 0.0005247599223355315
may -> 0.00022739596634539699
might -> 0.0009970438524375099
news
---------------------------------------------------------------------------
can -> 0.0009248761859299481
could -> 0.0008552618493545757
would -> 0.002426556874912982
should -> 0.0005867494082781391
must -> 0.0004972452612526602
may -> 0.0006563637448535115
might -> 0.0003779063985520218
religion
---------------------------------------------------------------------------
can -> 0.002081271098251225
could -> 0.0014974999365466128
would -> 0.0017259321302571132
should -> 0.0011421609685525014
must -> 0.0013705931622630017
may -> 0.0019797456788243355
might -> 0.000304576258280667
reviews
---------------------------------------------------------------------------
can -> 0.0011055424528301887
could -> 0.0009827044025157233
would -> 0.0011546776729559748
should -> 0.0004422169811320755
must -> 0.00046678459119496856
may -> 0.0011055424528301887
might -> 0.0006387578616352201
romance
---------------------------------------------------------------------------
can -> 0.0010568107166319157
could -> 0.0027562765987832393
would -> 0.0034846191197052353
should -> 0.0004569992288138014
must -> 0.0006426551655194082
may -> 0.00015709348490474423
might -> 0.000728342520921996
science_fiction
---------------------------------------------------------------------------
can -> 0.0011057360055286801
could -> 0.0033863165169315825
would -> 0.005459571527297858
should -> 0.0002073255010366275
must -> 0.0005528680027643401
may -> 0.00027643400138217003
might -> 0.00082930200414651
Vamos a repetir la operación de cálculo de frecuencias relativas reasignando estos valores en el propio objeto modals_cfd, con el objetivo de utilizar el método tabulate para poder impirmir la tabla con los valors relativos.
In [22]:
# lo primero, realizo una copia de mi distribución de frecuencias
import copy
modals_cfd_rel = copy.deepcopy(modals_cfd)
In [23]:
# sustituyo los conteos de la tabla por sus frecuencias relativas (ojo, en tantos por 10.000)
for categoria in brown.categories():
longitud = len(brown.words(categories=categoria))
for palabra in modals:
modals_cfd_rel[categoria][palabra] = (modals_cfd[categoria][palabra]/longitud)*10000
In [24]:
# imprimo la tabla
modals_cfd_rel.tabulate(conditions=brown.categories(), samples=modals)
can could would should must may might
adventure 6 21 27 2 3 0 8
belles_lettres 14 12 22 5 9 11 6
editorial 19 9 29 14 8 12 6
fiction 5 24 41 5 8 1 6
government 16 5 17 15 14 21 1
hobbies 32 7 9 8 10 15 2
humor 7 13 25 3 4 3 3
learned 20 8 17 9 11 17 7
lore 15 12 16 6 8 14 4
mystery 7 24 32 5 5 2 9
news 9 8 24 5 4 6 3
religion 20 14 17 11 13 19 3
reviews 11 9 11 4 4 11 6
romance 10 27 34 4 6 1 7
science_fiction 11 33 54 2 5 2 8
In [25]:
scifi_tagged_words = brown.tagged_words(categories='science_fiction')
print(scifi_tagged_words[:50])
[('Now', 'RB'), ('that', 'CS'), ('he', 'PPS'), ('knew', 'VBD'), ('himself', 'PPL'), ('to', 'TO'), ('be', 'BE'), ('self', 'NN'), ('he', 'PPS'), ('was', 'BEDZ'), ('free', 'JJ'), ('to', 'TO'), ('grok', 'VB'), ('ever', 'QL'), ('closer', 'RBR'), ('to', 'IN'), ('his', 'PP$'), ('brothers', 'NNS'), (',', ','), ('merge', 'VB'), ('without', 'IN'), ('let', 'NN'), ('.', '.'), ("Self's", 'NN$'), ('integrity', 'NN'), ('was', 'BEDZ'), ('and', 'CC'), ('is', 'BEZ'), ('and', 'CC'), ('ever', 'RB'), ('had', 'HVD'), ('been', 'BEN'), ('.', '.'), ('Mike', 'NP'), ('stopped', 'VBD'), ('to', 'TO'), ('cherish', 'VB'), ('all', 'ABN'), ('his', 'PP$'), ('brother', 'NN'), ('selves', 'NNS'), (',', ','), ('the', 'AT'), ('many', 'AP'), ('threes-fulfilled', 'JJ'), ('on', 'IN'), ('Mars', 'NP'), (',', ','), ('corporate', 'JJ'), ('and', 'CC')]
Fíjate que cuando accedemos a la versión etiquetada del corpus, no obtenemos una simple lista de palabras sino una lista de tuplas, donde el primer elemento es la palabra en cuestión u el segundo es la etiqueta que indica la categoría gramatical de la palabra.
Este conjunto etiquetas se ha convertido en casi un estándar para el inglés y se utilizan habitualmente para anotar cualquier recurso lingüístico en esa lengua.
Vamos a crear una nueva frecuencia de distribución condicional para calcular la frecuencia de aparición de las etiquetas, teniendo en cuenta la categoría.
In [26]:
tags_cfd = ConditionalFreqDist(
(category, item[1])
for category in brown.categories()
for item in brown.tagged_words(categories=category)
)
Y ahora vamos a imprimir la tabla de frecuencias para cada categoría y para algunas de las etiquetas morfológicas: sustantivos en singular NN, verbos en presente VB, verbos en pasado simple VBD, participios pasados VBN, adjetivos JJ, preposiciones IN, y artículos AT.
Recuerda: estas cifras no son directamente comparables entre categorías ya que éstas no están equilibradas. Hay categorías con más textos que otras.
In [27]:
tags_cfd.tabulate(conditions=brown.categories(),
samples='NN VB VBD VBN JJ IN AT'.split())
NN VB VBD VBN JJ IN AT
adventure 8051 2170 3702 1276 2687 5908 5531
belles_lettres 21800 4829 3501 4223 10414 19083 14898
editorial 7675 2129 700 1491 3593 6204 5311
fiction 7815 2173 3027 1497 2958 6012 5439
government 9877 1833 405 2190 4173 8596 5716
hobbies 12465 2966 617 2252 4883 8591 6946
humor 2567 656 699 478 1078 1926 1655
learned 29194 4342 1481 6044 12294 21757 16828
lore 14707 3083 2272 2822 6475 12074 9936
mystery 6461 2026 2645 1161 2109 4692 4321
news 13162 2440 2524 2269 4392 10616 8893
religion 4923 1275 511 931 2327 4266 3327
reviews 5066 872 504 875 2742 4040 3447
romance 7166 2404 3048 1359 3180 5616 4671
science_fiction 1541 495 531 318 723 1176 1040
In [28]:
# escribe tu código aquí
adjectives = {}
for item in brown.tagged_words(categories='hobbies'):
if item[1].startswith('JJ'):
adjectives[item[0]] = 1
print(list(adjectives.keys())[:50])
['edible', 'wise', 'ultraviolet', 'unique', 'novel', 'enterprising', 'intelligent', 'rare', 'coppery', 'unbelievable', 'nut-like', 'fast-growing', 'akin', 'interpretative', 'Christian', 'mature', 'Orthodox', 'wealthy', 'fertile', 'military', 'five-cent', 'yellow-green', 'stronger', 'major', 'aerial', 'Custom', 'phenomenal', 'high-set', 'Stormy', 'neat', 'transparent', 'too-simple-to-be-true', 'razor-edged', 'important', 'underwater', 'Capitalist', 'company-wide', 'Civil', 'frontal', 'unfenced', 'divan-like', 'Baptist', 'respective', 'considerable', 'nearby', 'Orphic', '40-grain', 'Ordinary', 'slightest', 'resultant']
In [29]:
# escribe tu código aquí
palabras_largas = {}
for item in brown.words():
if len(item) > 17 and '-' not in item:
palabras_largas[item] = 1
print(list(palabras_largas.keys()))
['psychopharmacological', 'metropolitanization', 'triphenylphosphine', 'electrocardiograph', 'ultracentrifugally', 'microcytochemistry', 'Diethylstilbestrol', 'Congregationalists', 'Characteristically', 'disenfranchisement', 'Ultracentrifugation', 'disproportionately', 'alkylbenzenesulfonates', 'antifundamentalist', 'Radiopasteurization', 'unselfconsciousness', 'ultracentrifugation', 'characteristically', 'arteriolosclerosis', 'glottochronological', 'interrelationships', 'hypoadrenocorticism', 'triphosphopyridine', 'material/hr./*0F./in.', 'spectrophotometric', 'Radiosterilization', "dabhumaksanigalu'ahai", 'Autosuggestibility', 'misrepresentations', 'immunoelectrophoresis', 'radiosterilization', 'Kristallstrukturen', 'radiopasteurization', 'coccidioidomycosis', 'cathodoluminescent', 'Institutionalization', 'Transcendentalists', 'oversimplification', 'interdenominational', 'origin/destination', 'diethylstilbestrol', 'interconnectedness']
In [30]:
palabras_largas = {}
for item in brown.words():
if len(item) > 17 and '-' not in item:
palabras_largas[item] = 1
print(list(palabras_largas.keys()))
['psychopharmacological', 'metropolitanization', 'triphenylphosphine', 'electrocardiograph', 'ultracentrifugally', 'microcytochemistry', 'Diethylstilbestrol', 'Congregationalists', 'Characteristically', 'disenfranchisement', 'Ultracentrifugation', 'disproportionately', 'alkylbenzenesulfonates', 'antifundamentalist', 'Radiopasteurization', 'unselfconsciousness', 'ultracentrifugation', 'characteristically', 'arteriolosclerosis', 'glottochronological', 'interrelationships', 'hypoadrenocorticism', 'triphosphopyridine', 'material/hr./*0F./in.', 'spectrophotometric', 'Radiosterilization', "dabhumaksanigalu'ahai", 'Autosuggestibility', 'misrepresentations', 'immunoelectrophoresis', 'radiosterilization', 'Kristallstrukturen', 'radiopasteurization', 'coccidioidomycosis', 'cathodoluminescent', 'Institutionalization', 'Transcendentalists', 'oversimplification', 'interdenominational', 'origin/destination', 'diethylstilbestrol', 'interconnectedness']
In [31]:
import operator
with open('../data/sherlockholmes.txt') as f:
text = "".join(f.readlines())
# normalizamos el texto a minúsculas
text = text.lower()
# tokenizamos: segmentamos por palabras
tokens = text.split()
# calculamos frecuencias
frecuencias = {}
for token in tokens:
if token in frecuencias:
frecuencias[token] += 1
else:
frecuencias[token] = 1
frecuencias_ordenadas = sorted(frecuencias.items(), key=operator.itemgetter(1),
reverse=True)
print(frecuencias_ordenadas)
[('the', 19861), ('and', 9464), ('of', 9270), ('to', 8794), ('a', 8546), ('i', 8236), ('that', 6001), ('in', 5857), ('was', 5315), ('he', 4765), ('it', 4305), ('his', 4204), ('you', 3984), ('is', 3437), ('had', 3252), ('have', 3084), ('my', 3030), ('with', 2827), ('as', 2597), ('at', 2505), ('which', 2484), ('for', 2420), ('we', 2108), ('not', 1923), ('but', 1896), ('be', 1849), ('this', 1689), ('from', 1661), ('said', 1560), ('upon', 1494), ('on', 1428), ('me', 1388), ('been', 1379), ('there', 1348), ('an', 1280), ('were', 1266), ('your', 1234), ('by', 1205), ('one', 1188), ('very', 1146), ('would', 1125), ('"i', 1124), ('no', 1094), ('so', 1093), ('all', 1089), ('are', 1071), ('could', 1066), ('she', 1054), ('her', 1053), ('him', 1029), ('if', 983), ('when', 977), ('what', 976), ('has', 947), ('will', 926), ('our', 921), ('some', 897), ('out', 896), ('mr.', 894), ('who', 879), ('into', 855), ('man', 765), ('up', 764), ('should', 734), ('holmes', 715), ('do', 709), ('see', 653), ('they', 651), ('or', 650), ('can', 627), ('down', 618), ('only', 589), ('more', 585), ('over', 577), ('little', 576), ('am', 574), ('may', 573), ('about', 571), ('us', 555), ('must', 544), ('then', 539), ('any', 529), ('two', 508), ('than', 493), ('came', 485), ('before', 482), ('know', 468), ('did', 466), ('come', 461), ('holmes,', 440), ('it.', 435), ('think', 431), ('other', 410), ('back', 403), ('"you', 400), ('might', 397), ('where', 393), ('how', 387), ('shall', 387), ('never', 381), ('own', 371), ('such', 369), ('now', 368), ('time', 363), ('"it', 363), ('last', 356), ('much', 356), ('them', 345), ('after', 342), ('tell', 339), ('found', 337), ('saw', 336), ('made', 332), ('most', 330), ('their', 327), ('holmes.', 324), ('these', 322), ('nothing', 321), ('just', 320), ('heard', 315), ('first', 312), ('old', 309), ('it,', 308), ('like', 308), ('face', 306), ('me,', 300), ('left', 296), ('through', 295), ('him.', 293), ('you,', 292), ('make', 292), ('find', 282), ('long', 278), ('he.', 276), ('go', 276), ('take', 275), ('until', 275), ('"and', 274), ('sir', 273), ('way', 273), ('say', 271), ('however,', 270), ('"well,', 268), ('here', 263), ('me.', 263), ('"the', 262), ('young', 261), ('once', 261), ('get', 261), ('good', 260), ('watson,', 260), ('its', 260), ('every', 255), ('few', 252), ('took', 250), ('case', 249), ('away', 245), ('door', 244), ('round', 240), ('three', 240), ('yet', 239), ('thought', 239), ('still', 238), ('he,', 234), ('"but', 234), ('turned', 234), ('sherlock', 233), ('great', 229), ('"yes,', 229), ('without', 228), ('quite', 225), ('now,', 222), ('friend', 222), ('give', 220), ('those', 219), ('room', 218), ('eyes', 217), ('seen', 216), ('looked', 215), ('something', 214), ('let', 213), ('him,', 211), ('got', 210), ('matter', 210), ('far', 210), ('seemed', 208), ('look', 207), ('put', 206), ('against', 205), ('then,', 204), ('hand', 203), ('dr.', 202), ('off', 201), ('between', 201), ('ever', 201), ('man,', 199), ('knew', 197), ('himself', 195), ('dear', 194), ('light', 194), ('house', 193), ('same', 192), ('"what', 191), ('even', 191), ("don't", 189), ('told', 187), ('small', 185), ('went', 185), ('well', 184), ('sir,', 181), ('done', 178), ('while', 177), ('night', 173), ('rather', 172), ('being', 172), ('since', 169), ('side', 169), ('too', 168), ('both', 166), ('always', 164), ('"no,', 163), ('lay', 161), ('again', 160), ('though', 160), ('whole', 160), ('myself', 159), ('day', 159), ('black', 159), ('sat', 159), ('"that', 158), ('why', 156), ('right', 154), ('doubt', 154), ('already', 153), ('having', 153), ('cannot', 152), ('anything', 152), ('under', 152), ('name', 151), ('well,', 150), ('end', 150), ('gave', 150), ('behind', 149), ('lady', 149), ('brought', 148), ('asked', 148), ('certainly', 148), ('really', 147), ('it."', 145), ('you.', 145), ('instant', 144), ('hardly', 143), ('stood', 142), ('"he', 142), ('whom', 141), ('cried', 141), ('head', 140), ('help', 140), ('passed', 140), ('taken', 139), ('front', 139), ('each', 139), ('clear', 139), ('across', 138), ('hands', 137), ('mrs.', 135), ('morning', 135), ('us.', 135), ('also', 134), ('leave', 133), ('that,', 132), ('"my', 131), ('miss', 131), ('woman', 129), ('half', 128), ('years', 128), ('within', 127), ('read', 127), ('"there', 126), ('during', 126), ('many', 126), ('paper', 125), ('"we', 125), ('enough', 124), ('sure', 124), ('hear', 124), ('ask', 123), ('dark', 122), ('thing', 120), ('set', 120), ('room,', 120), ('opened', 120), ('mind', 120), ('open', 117), ('strange', 117), ('does', 117), ('and,', 116), ('gone', 116), ('window', 116), ('us,', 116), ('among', 115), ('held', 114), ('another', 114), ('several', 113), ('save', 113), ('place', 112), ('large', 112), ('able', 112), ('them.', 112), ('room.', 111), ('house,', 110), ('life', 110), ('second', 110), ('word', 109), ('next', 109), ('better', 109), ('five', 108), ('wish', 108), ('wife', 108), ('letter', 107), ('course,', 107), ('"oh,', 107), ('then?"', 107), ('"then', 107), ('point', 106), ('street', 106), ('new', 105), ('going', 105), ('suddenly', 105), ('work', 105), ('business', 105), ('ran', 104), ('known', 104), ('hour', 104), ('london', 103), ('henry', 103), ('papers', 102), ('towards', 102), ('possible', 102), ('either', 101), ('police', 101), ('whether', 101), ('"this', 101), ('showed', 101), ('met', 100), ('course', 99), ('looking', 98), ('poor', 98), ('men', 98), ('i.', 97), ('singular', 97), ('led', 97), ('reason', 96), ('death', 96), ('call', 94), ('"a', 94), ('least', 94), ('followed', 94), ('walked', 94), ('door.', 93), ('words', 93), ('understand', 93), ('here,', 93), ('man.', 93), ('interest', 93), ('part', 92), ('fear', 92), ('asked.', 92), ('want', 92), ('fellow', 92), ('seems', 92), ("it's", 91), ('i,', 91), ('coming', 91), ('cried.', 90), ('reached', 90), ('best', 89), ("man's", 89), ('near', 89), ('st.', 89), ('soon', 89), ('"how', 89), ('moment', 88), ('days', 88), ('struck', 88), ('so.', 88), ('white', 87), ('remember', 87), ('hand,', 87), ('less', 87), ('whose', 86), ('believe', 86), ('it?"', 86), ('keep', 86), ('lord', 86), ('ten', 86), ('father', 86), ('house.', 86), ('evening', 86), ('use', 85), ('hall', 85), ('chance', 85), ('hope', 84), ('account', 84), ('face.', 84), ('there,', 84), ('rushed', 84), ('door,', 84), ('given', 84), ('window,', 84), ('is,', 84), ('laid', 83), ('perhaps', 83), ('face,', 83), ('turn', 83), ('them,', 83), ('baker', 83), ('you."', 83), ('bring', 83), ('minutes', 82), ('morning,', 82), ('her,', 82), ('kept', 81), ('time,', 81), ('lost', 81), ('gentleman', 81), ('night,', 81), ("i'll", 80), ('entered', 79), ('story', 79), ('colonel', 79), ('adventure', 79), ('dead', 79), ('inspector', 79), ('up,', 78), ('sent', 78), ('along', 78), ('rose', 78), ('no,', 78), ('country', 78), ('used', 78), ('returned', 78), ('chair', 77), ('order', 77), ('nor', 77), ('hundred', 76), ('full', 76), ('things', 76), ('remarkable', 76), ('charles', 75), ('glad', 75), ('strong', 75), ('cut', 75), ('so,', 75), ('certain', 74), ('yourself', 74), ('show', 74), ('one.', 74), ('watson,"', 74), ('case,', 73), ('close', 73), ('deep', 73), ('feet', 73), ('later', 73), ('facts', 72), ('sound', 71), ('baskerville', 71), ('sprang', 71), ('one,', 71), ('entirely', 71), ('anyone', 71), ('attention', 70), ('became', 70), ('return', 70), ('above', 70), ('called', 70), ('street,', 70), ('beside', 70), ('four', 70), ('fell', 70), ('"if', 70), ('heavy', 70), ('note', 69), ('drew', 69), ('step', 68), ('standing', 68), ('question', 68), ('hand.', 68), ('fact', 68), ('examined', 68), ('drawn', 68), ('short', 68), ('together', 68), ('means', 68), ('street.', 68), ('carried', 68), ('people', 67), ('extraordinary', 67), ('hard', 67), ('family', 67), ('felt', 67), ('home', 67), ('appeared', 66), ('began', 66), ('said,', 66), ('fresh', 66), ('again.', 66), ('feel', 66), ('was,', 66), ('out,', 65), ('sir.', 65), ('night.', 65), ('answer', 65), ('evidence', 65), ('way,', 65), ('corner', 65), ('walk', 65), ('think,', 65), ('indeed', 65), ('past', 64), ('high', 64), ('outside', 64), ('me."', 64), ('red', 64), ('six', 64), ("holmes's", 64), ('husband', 63), ('secret', 63), ('"\'i', 63), ('threw', 63), ('this,', 63), ('cry', 63), ('present', 62), ('know,', 62), ('suppose', 62), ('road', 62), ('late', 62), ('money', 62), ('but,', 62), ('ready', 62), ('"in', 62), ('doing', 62), ('person', 62), ('therefore,', 62), ('mean', 62), ('again,', 62), ('speak', 62), ('waiting', 62), ('idea', 61), ('moor.', 61), ('seem', 61), ('making', 61), ('fellow,', 61), ('table.', 61), ('moor', 61), ('watson.', 61), ('glanced', 60), ('cases', 60), ('shown', 60), ('because', 60), ('tried', 60), ('lestrade', 60), ('absolutely', 60), ('drove', 60), ('caught', 59), ('eyes.', 59), ('likely', 59), ('imagine', 59), ('heart', 59), ('exactly', 59), ('crime', 59), ('visit', 59), ('spoke', 58), ('yes,', 58), ('points', 58), ('manner', 58), ('direction', 58), ('sudden', 58), ('possibly', 58), ('curious', 58), ('evidently', 58), ('position', 58), ('all,', 58), ('follow', 57), ('london,', 57), ('sign', 57), ('need', 56), ('else', 56), ("o'clock", 56), ('trust', 56), ('almost', 56), ('considerable', 56), ('long,', 56), ('picked', 56), ('stapleton', 56), ('figure', 56), ('that.', 55), ('broke', 55), ('probably', 55), ('started', 55), ('broken', 55), ('hurried', 55), ('day,', 55), ('ourselves', 55), ('wrote', 55), ('sort', 55), ('her.', 55), ('true', 55), ('see,', 55), ('none', 55), ('body', 55), ('thin', 54), ('obvious', 54), ('observed', 54), ('table', 54), ("can't", 54), ('talk', 54), ('run', 54), ('hold', 54), ('pulled', 53), ('head.', 53), ('sir."', 53), ('him."', 53), ('happened', 53), ('nearly', 53), ('dreadful', 53), ('"very', 53), ('james', 53), ('interesting', 53), ('son', 52), ('"have', 52), ('public', 52), ('say,', 52), ('terrible', 52), ('taking', 52), ('excellent', 52), ('brother', 52), ('early', 52), ('learned', 52), ('air', 52), ('seven', 52), ('placed', 52), ('impression', 52), ('steps', 52), ('cab', 52), ('hands.', 52), ('object', 52), ('forward', 51), ('closed', 51), ('train', 51), ('further', 51), ('hours', 51), ('sight', 51), ('more.', 51), ('eyes,', 51), ('voice', 51), ('shot', 51), ('friend,', 51), ('"so', 51), ('"it\'s', 51), ('"when', 51), ('"by', 50), ('"not', 50), ('surprised', 50), ('miles', 50), ('boy', 50), ('"to', 50), ('"your', 50), ('window.', 50), ('carriage', 50), ('happy', 50), ("there's", 50), ('dangerous', 50), ('key', 50), ('married', 49), ('drive', 49), ('meet', 49), ('line', 49), ('remarked', 49), ('answered', 49), ('time.', 49), ('confess', 49), ('"did', 49), ("that's", 49), ('bed', 49), ('"is', 49), ('deal', 49), ('pounds', 49), ('down,', 49), ('cold', 49), ('out.', 48), ('easy', 48), ('hair', 48), ('there.', 48), ('leaving', 48), ('letters', 48), ('low', 48), ('glance', 47), ('place,', 47), ('dropped', 47), ('waited', 47), ('stone', 47), ('path', 47), ('answered.', 47), ('surprise', 47), ('in,', 47), ('blue', 47), ('holmes,"', 47), ('unfortunate', 47), ('all.', 47), ('months', 47), ('state', 47), ('complete', 47), ('remained', 47), ('that?"', 46), ('presence', 46), ('third', 46), ('"they', 46), ('afterwards', 46), ('single', 46), ('lying', 46), ('someone', 46), ('scene', 46), ('cause', 46), ('maid', 46), ('study', 46), ('neither', 45), ('shadow', 45), ('trace', 45), ('sitting', 45), ('private', 45), ('important', 45), ('rest', 45), ('occurred', 45), ('problem', 45), ('quiet', 45), ('way.', 45), ('morning.', 45), ("'i", 45), ('said.', 45), ('turning', 45), ('getting', 45), ('quarter', 45), ('open,', 45), ('slowly', 45), ('john', 45), ('care', 45), ('love', 45), ('woman,', 44), ('"\'you', 44), ('"because', 44), ('top', 44), ('rooms', 44), ('difficulty', 44), ('assure', 44), ('everything', 44), ('surely', 44), ('blow', 44), ('simple', 44), ('impossible', 44), ('seeing', 44), ('up.', 43), ('"thank', 43), ('cried,', 43), ('indeed,', 43), ('sharp', 43), ('aware', 43), ('written', 43), ('importance', 43), ('caused', 43), ('listened', 43), ('convinced', 43), ('straight', 43), ('matter.', 43), ('visitor', 43), ('lamp', 42), ('"no', 42), ('last,', 42), ('silent', 42), ('road,', 42), ('horse', 42), ('criminal', 42), ('hound', 42), ('beyond', 42), ('moor,', 42), ('send', 42), ('explain', 42), ('expect', 42), ('start', 42), ('break', 42), ('running', 42), ('write', 42), ('perfectly', 42), ('shook', 42), ('died', 42), ('received', 42), ('affair', 42), ('afraid', 42), ('not,', 42), ('well.', 41), ('throw', 41), ('pushed', 41), ('chair,', 41), ('evident', 41), ('blood', 41), ('pass', 41), ('marked', 41), ('signs', 41), ('prove', 41), ('alone', 41), ('windows', 41), ('"do', 41), ('twice', 41), ('silence', 41), ('professor', 41), ('"ah,', 41), ('do,', 41), ('finding', 41), ('yards', 41), ('"why', 41), ('mortimer', 41), ('here.', 41), ('eye', 40), ('stared', 40), ('serious', 40), ('do.', 40), ('nature', 40), ('hall,', 40), ('london.', 40), ('following', 40), ('raised', 40), ('promise', 40), ('yellow', 40), ('difficult', 40), ('wait', 40), ('hat', 40), ('barrymore', 40), ('sit', 39), ('change', 39), ('pointed', 39), ('wished', 39), ('examination', 39), ('creature', 39), ('client', 39), ('mark', 39), ('wanted', 39), ('right,', 39), ('matter,', 39), ('inside', 39), ('huge', 39), ('side.', 39), ('unless', 39), ('expression', 39), ('glancing', 39), ('fancy', 39), ('pipe', 39), ('appears', 39), ('come,', 39), ('thousand', 38), ('kind', 38), ('peculiar', 38), ('view', 38), ('trouble', 38), ('bad', 38), ('mind.', 38), ('effect', 38), ('sometimes', 38), ('often', 38), ('live', 38), ('holmes?"', 38), ('become', 38), ('garden', 38), ('centre', 38), ('thrown', 38), ('evening,', 38), ('details', 38), ('table,', 38), ('earth', 38), ('year', 38), ('carefully', 38), ('friends', 38), ('watson', 37), ('incident', 37), ("won't", 37), ('explanation', 37), ('power', 37), ('connection', 37), ('walking', 37), ('lestrade,', 37), ('spent', 37), ('name,', 37), ('knowledge', 37), ('chair.', 37), ('handed', 37), ('pocket', 37), ('features', 37), ('world', 37), ('burst', 37), ('box', 37), ('doctor', 37), ('marks', 37), ('you?"', 37), ('knowing', 37), ('clearly', 37), ('others', 37), ('you,"', 37), ('bedroom', 37), ('stand', 36), ('news', 36), ('off,', 36), ('back.', 36), ('breakfast', 36), ('sister', 36), ('sank', 36), ('pale', 36), ('are,', 36), ('gray', 36), ('events', 36), ('finally', 36), ('absolute', 36), ('comes', 36), ('before.', 36), ('lived', 36), ('information', 36), ('play', 36), ('appearance', 36), ('try', 36), ('together.', 35), ('pay', 35), ('weeks', 35), ('together,', 35), ('empty', 35), ('godfrey', 35), ('lestrade.', 35), ('worth', 35), ('master', 35), ('knows', 35), ('life.', 35), ('beautiful', 35), ('pretty', 35), ('wall', 35), ('thrust', 35), ('paper,', 35), ('laughed', 35), ('danger', 35), ('clue', 34), ('broad', 34), ('formed', 34), ('"she', 34), ('murder', 34), ('"now,', 34), ('nervous', 34), ('it,"', 34), ('too,', 34), ('instantly', 34), ('"on', 34), ('fine', 34), ('foot', 34), ('beg', 34), ('case.', 34), ('she,', 34), ('fire', 34), ('putting', 34), ('engaged', 34), ('times', 34), ('feeling', 34), ('keen', 34), ('girl', 34), ('road.', 34), ('natural', 34), ('attempt', 34), ('appear', 34), ('carry', 34), ('seated', 33), ('dog', 33), ('understand,', 33), ('dare', 33), ('"quite', 33), ('revolver', 33), ('covered', 33), ('myself.', 33), ('week', 33), ('swiftly', 33), ('pair', 33), ('goes', 33), ('"of', 33), ('scotland', 33), ('companion', 33), ('remain', 33), ('reach', 33), ('asked,', 33), ('south', 33), ('number', 33), ('different', 33), ('not.', 33), ('"one', 33), ('which,', 33), ('side,', 33), ('head,', 33), ('anxious', 33), ('sir,"', 33), ('stick', 33), ('kindly', 33), ('now.', 33), ('back,', 33), ('dressed', 33), ('minute', 32), ('mystery', 32), ('edge', 32), ('report', 32), ('professional', 32), ('twenty', 32), ('away,', 32), ('lit', 32), ("i've", 32), ('ended', 32), ('exceedingly', 32), ('lower', 32), ('draw', 32), ('stopped', 32), ('traces', 32), ('passage', 32), ('safe', 32), ('desire', 32), ('brown', 32), ('station', 32), ('"who', 32), ('theory', 32), ('end.', 32), ('thank', 32), ('thick', 32), ('easily', 32), ('middle', 32), ('it?', 32), ('business,', 32), ('horror', 32), ('charge', 32), ('arms', 32), ('down.', 32), ('before,', 32), ('itself', 32), ('"mr.', 32), ('telegram', 32), ('mere', 32), ('determined', 32), ('seized', 31), ('experience', 31), ('whatever', 31), ('remains', 31), ('away.', 31), ('hands,', 31), ('him?"', 31), ('knife', 31), ('"for', 31), ('quick', 31), ('ago', 31), ('stepped', 31), ('medical', 31), ('smoke', 31), ('had,', 31), ('hall.', 31), ('other.', 31), ("friend's", 31), ('other,', 31), ('shrugged', 31), ('lies', 31), ('evil', 31), ("woman's", 31), ('monday', 31), ('enough,', 31), ("lady's", 31), ('prevent', 31), ('distance', 31), ('wonder', 31), ('"why,', 31), ('character', 31), ('catch', 31), ('piece', 31), ('"pray', 31), ('fairly', 31), ('swear', 31), ("'you", 31), ('square', 31), ('locked', 30), ('myself,', 30), ('wooden', 30), ('england', 30), ('pray', 30), ('approached', 30), ('"at', 30), ('sheet', 30), ('amid', 30), ('force', 30), ('wrong', 30), ('me,"', 30), ('observe', 30), ('human', 30), ('glass', 30), ('touch', 30), ('green', 30), ('floor', 30), ('"where', 30), ('real', 30), ('mortimer,', 30), ('undoubtedly', 30), ('ground', 30), ('therefore', 30), ('utmost', 30), ('fixed', 30), ('doubt,', 30), ('lie', 30), ('town', 29), ('lonely', 29), ('us."', 29), ('common', 29), ('last.', 29), ('herself', 29), ('latter', 29), ('marriage', 29), ('instant,', 29), ('sorry', 29), ('prepared', 29), ('watson?"', 29), ('lips', 29), ('learn', 29), ('glimpse', 29), ('form', 29), ('peter', 29), ('in.', 29), ('farther', 29), ('office', 29), ('usually', 29), ('writing', 29), ('official', 29), ('missing', 29), ('shoulders.', 29), ("didn't", 29), ('unusual', 28), ('butler', 28), ('companion.', 28), ('necessary', 28), ('cleared', 28), ('doctor,', 28), ('practical', 28), ('will,', 28), ('once,', 28), ('lad', 28), ('arrived', 28), ('spot', 28), ('ordinary', 28), ('company', 28), ('done,', 28), ('slipped', 28), ('eight', 28), ('slight', 28), ('place.', 28), ('french', 28), ('lead', 28), ('day.', 28), ('driven', 28), ('fire.', 28), ('sunk', 28), ('seldom', 28), ('usual', 28), ('particular', 28), ('dress', 28), ('questions', 28), ('stranger', 28), ('matters', 28), ('elderly', 28), ('perhaps,', 28), ('deeply', 28), ('dark,', 28), ('stanley', 28), ('message', 28), ('moved', 27), ('finally,', 27), ('paid', 27), ('although', 27), ('ring', 27), ('instead', 27), ('gone.', 27), ('stretched', 27), ('yet,', 27), ('arrest', 27), ('"that\'s', 27), ('bound', 27), ('narrow', 27), ('working', 27), ('silver', 27), ('lady,', 27), ('suit', 27), ('remarked,', 27), ('rapidly', 27), ('circumstances', 27), ('floor,', 27), ('naturally', 27), ('"as', 27), ('living', 27), ('see.', 27), ('be,', 26), ('life,', 26), ('except', 26), ('interested', 26), ('advice', 26), ('busy', 26), ('lives', 26), ('suggest', 26), ('tall,', 26), ('suggested', 26), ('nine', 26), ('this?"', 26), ('familiar', 26), ('probable', 26), ('horrible', 26), ("he's", 26), ('shining', 26), ('somewhat', 26), ('duty', 26), ('trying', 26), ('over,', 26), ('them."', 26), ('wild', 26), ('wind', 26), ('watched', 26), ('yesterday', 26), ('arm', 26), ('slip', 26), ('answered,', 26), ('daughter', 26), ('pocket.', 26), ('cunning', 26), ('duke', 26), ('"here', 26), ('game', 26), ('fall', 26), ('search', 26), ('general', 26), ('free', 26), ('worn', 26), ('lawn', 26), ('bed,', 26), ('all."', 26), ('excuse', 26), ('opposite', 26), ('investigation', 26), ('cross', 26), ('mine', 26), ('baronet', 26), ('local', 26), ('to-morrow', 26), ('fallen', 26), ('first,', 26), ('shortly', 26), ('intention', 26), ('word,', 26), ('finger', 26), ('notice', 26), ('english', 25), ('understood', 25), ('asking', 25), ('bottom', 25), ('one."', 25), ('done.', 25), ('fire,', 25), ('forced', 25), ('central', 25), ('truth', 25), ('document', 25), ('powers', 25), ('rucastle', 25), ('death,', 25), ('bright', 25), ('hour,', 25), ('frank', 25), ('harm', 25), ('influence', 25), ('proved', 25), ('couple', 25), ('meant', 25), ('allow', 25), ('"his', 25), ('reading', 25), ('crime.', 25), ('wife.', 25), ('conversation', 25), ('twelve', 25), ('quickly', 25), ('smile', 25), ('not."', 25), ('"no."', 25), ('hudson', 25), ('fair', 25), ('henry,', 25), ('years,', 25), ('rich', 25), ('himself.', 25), ('child', 25), ('value', 25), ('thinking', 25), ('due', 25), ('hotel', 25), ('hopkins', 25), ('son,', 25), ('fact,', 25), ('unable', 25), ('sleep', 25), ('leaned', 25), ('telling', 25), ('detective', 24), ('ago,', 24), ('wood', 24), ('especially', 24), ('forward,', 24), ('flushed', 24), ('vague', 24), ('frightened', 24), ('spite', 24), ('expected', 24), ('bent', 24), ('here."', 24), ('words.', 24), ('crime,', 24), ('william', 24), ("you'll", 24), ('double', 24), ('situation', 24), ('when,', 24), ('energy', 24), ('leaning', 24), ('moving', 24), ('weight', 24), ('wore', 24), ('examine', 24), ('famous', 24), ('opinion', 24), ('continued', 24), ('knocked', 24), ('inspector.', 24), ('service', 24), ('fastened', 24), ('"good', 24), ('connected', 24), ('inquiries', 24), ('fate', 24), ('hopkins,', 24), ('action', 24), ('weary', 24), ('mother', 24), ('sum', 24), ('nerves', 24), ('hung', 24), ('feared', 24), ('also.', 24), ('leading', 24), ('explained', 24), ('purpose', 24), ('giving', 24), ('floor.', 24), ('enter', 23), ('king', 23), ('passing', 23), ('methods', 23), ('valuable', 23), ('so."', 23), ('"exactly.', 23), ('spring', 23), ('conceal', 23), ('shone', 23), ('loved', 23), ('bust', 23), ('keenly', 23), ('round,', 23), ('opening', 23), ('north', 23), ('aid', 23), ('thought,', 23), ('played', 23), ('german', 23), ('beneath', 23), ('consider', 23), ('loss', 23), ('over.', 23), ('fashion,', 23), ('career', 23), ('right.', 23), ('personal', 23), ('shaken', 23), ('meaning', 23), ('grew', 23), ('main', 23), ('person,', 23), ('raise', 23), ('servants', 23), ('touched', 23), ('hanging', 23), ('folk', 23), ('allowed', 23), ('hilton', 23), ('practice', 23), ('"\'and', 23), ("charles's", 23), ('delicate', 23), ('law', 23), ('address', 23), ('oh,', 23), ('british', 23), ('photograph', 23), ('tall', 23), ('mouth', 23), ('noble', 23), ('boots', 23), ('himself,', 23), ('light.', 23), ('says', 23), ('water', 23), ('grass', 23), ('friend.', 23), ('initials', 23), ('upper', 23), ('"yes."', 23), ('city', 23), ('shaking', 23), ('lose', 23), ('actually', 23), ('holmes."', 23), ('more,', 23), ('candle', 23), ('bore', 23), ('wife,', 23), ('rising', 23), ('breaking', 23), ('little,', 23), ('bit', 23), ('country.', 22), ('immense', 22), ('was.', 22), ('thin,', 22), ('presented', 22), ('begin', 22), ('passage,', 22), ('looks', 22), ('examining', 22), ('shut', 22), ('county', 22), ('heavily', 22), ('remarked.', 22), ('strength', 22), ('straker', 22), ('perfect', 22), ('gate', 22), ('recovered', 22), ('saying', 22), ('served', 22), ('false', 22), ('filled', 22), ('father,', 22), ('saved', 22), ('statement', 22), ('beard', 22), ('terror', 22), ('notes', 22), ('stay', 22), ("i'm", 22), ('around', 22), ('letter,', 22), ('watching', 22), ('habit', 22), ('quietly', 22), ('fit', 22), ('she.', 22), ('sense', 22), ('absurd', 22), ('disappearance', 22), ('makes', 22), ('besides,', 22), ('mine.', 22), ('"was', 22), ('spare', 22), ('yours', 22), ('morning."', 22), ('sinister', 22), ('mentioned', 22), ('inspector,', 22), ('staring', 22), ('suspicion', 22), ('painful', 22), ('point.', 22), ('this.', 22), ('shoulders', 22), ('moment,', 22), ('come.', 22), ('mary', 22), ('simon', 22), ('"let', 22), ('finished', 21), ('go.', 21), ('nothing.', 21), ('gentleman,', 21), ('mind,', 21), ('arthur', 21), ('occurred.', 21), ('evening.', 21), ('future', 21), ('escaped', 21), ('fashion', 21), ('formidable', 21), ('greatest', 21), ('gleam', 21), ('boy,', 21), ('office,', 21), ('merely', 21), ('suddenly,', 21), ('claim', 21), ('truth,', 21), ('named', 21), ('feet,', 21), ('"\'it', 21), ('gives', 21), ('acted', 21), ('throwing', 21), ('"perhaps', 21), ('interest.', 21), ('equally', 21), ('grounds', 21), ('heart.', 21), ('me?"', 21), ('example,', 21), ('uncle', 21), ('gentlemen', 21), ('eager', 21), ('cast', 21), ('record', 21), ('darkness', 21), ('why,', 21), ('discovered', 21), ('mccarthy', 21), ('prisoner', 21), ('spoken', 21), ('sooner', 21), ('reasons', 21), ('houses', 21), ('honour', 21), ('sake', 21), ('features.', 21), ('milverton', 21), ('big', 21), ('bell', 21), ('there."', 21), ('ground.', 21), ('business.', 21), ('recent', 21), ('shoulder.', 21), ('reputation', 20), ('not?"', 20), ('"surely', 20), ('scandal', 20), ('positive', 20), ('bedroom,', 20), ('fortune', 20), ('hot', 20), ('gentlemen,', 20), ('interview', 20), ('west', 20), ('stop', 20), ('track', 20), ('forever', 20), ('"i\'ll', 20), ('alone.', 20), ('share', 20), ('coat', 20), ('holding', 20), ('hoped', 20), ('confidence', 20), ('continue', 20), ('somewhere', 20), ('receive', 20), ('bearing', 20), ('owe', 20), ('narrative', 20), ('grey', 20), ('papers,', 20), ('card', 20), ('inquiry', 20), ('crossed', 20), ('station.', 20), ('pleasant', 20), ("father's", 20), ('open.', 20), ('older', 20), ("companion's", 20), ('keeping', 20), ('home,', 20), ('immediately', 20), ('longer', 20), ('savage', 20), ('stands', 20), ('carrying', 20), ('capable', 20), ('motive', 20), ('town,', 20), ('moriarty', 20), ('strike', 20), ('darkness.', 20), ('afternoon', 20), ('page', 20), ('baskerville,', 20), ('dashed', 20), ('recognized', 20), ('police,', 20), ('appointment', 20), ('sun', 20), ('themselves', 20), ('failed', 20), ('papers.', 20), ('work.', 20), ('conduct', 20), ('occasion', 20), ('glasses', 20), ('alarm', 20), ('offered', 20), ('hosmer', 20), ('rain', 20), ('warning', 20), ('"from', 20), ('contrary,', 20), ('admit', 20), ('thoughts', 20), ('quick,', 20), ('returning', 19), ('minutes,', 19), ('on.', 19), ('extremely', 19), ('would,', 19), ('thirty', 19), ('colonel,', 19), ('out."', 19), ('remember,', 19), ('"\'the', 19), ('iron', 19), ('imagine,', 19), ('younger', 19), ('greater', 19), ('remembered', 19), ('for,', 19), ('utterly', 19), ('"\'what', 19), ('drop', 19), ('copy', 19), ('chamber', 19), ('age,', 19), ('act', 19), ('begun', 19), ('he;', 19), ('driving', 19), ('unhappy', 19), ('paper.', 19), ('bear', 19), ('chin', 19), ('room."', 19), ('breath', 19), ('guide', 19), ('do?"', 19), ('voice,', 19), ('propose', 19), ('nothing,', 19), ("we'll", 19), ("husband's", 19), ('committed', 19), ('door."', 19), ('bank', 19), ('burned', 19), ('slept', 19), ('simply', 19), ('wire', 19), ('frequently', 19), ('leads', 19), ('pistol', 19), ('larger', 19), ('red-headed', 19), ('say.', 19), ('printed', 19), ('special', 19), ('intimate', 19), ('compelled', 19), ('voice.', 19), ("holmes'", 19), ('refused', 19), ('plans', 19), ('extreme', 19), ('trap', 19), ('woman.', 19), ('affairs', 19), ('money,', 19), ('torn', 19), ('results', 19), ('thought.', 19), ('hat,', 19), ('acquaintance', 19), ('pleasure', 19), ('know.', 19), ('bicycle', 19), ('end,', 19), ('cover', 19), ('good,', 19), ('unknown', 19), ('direction.', 19), ('good.', 18), ('series', 18), ('story.', 18), ('date', 18), ('chain', 18), ('fingers', 18), ('smoking', 18), ('wet', 18), ('pocket,', 18), ('unexpected', 18), ('however', 18), ('now?"', 18), ('fifty', 18), ('rough', 18), ('court', 18), ('also,', 18), ('wall.', 18), ('tore', 18), ('brilliant', 18), ('neville', 18), ('advantage', 18), ('shape', 18), ('foul', 18), ('tragedy', 18), ('settled', 18), ('coombe', 18), ('inclined', 18), ('sake,', 18), ('forget', 18), ('avoid', 18), ('cottage', 18), ('shows', 18), ('england,', 18), ('convict', 18), ('be.', 18), ('path.', 18), ('furnished', 18), ('helped', 18), ('impressed', 18), ('entered,', 18), ('journey', 18), ('tobacco', 18), ('assured', 18), ('fail', 18), ('"come', 18), ('once.', 18), ('neck', 18), ('yet.', 18), ('later,', 18), ('&', 18), ('angry', 18), ('there?"', 18), ('original', 18), ('dragged', 18), ('companion,', 18), ('astonishment', 18), ('husband.', 18), ('sitting-room', 18), ('conscious', 18), ('intense', 18), ('women', 18), ('desperate', 18), ('"yes;', 18), ('active', 18), ('risk', 18), ('emerged', 18), ('fashion.', 18), ('guilty', 18), ('seen.', 18), ('case."', 18), ('scattered', 18), ('month', 18), ('half-past', 18), ('station,', 18), ('ought', 18), ('god', 18), ('clothes', 18), ('foreign', 18), ('possibility', 18), ('deadly', 18), ('here?"', 18), ('client.', 18), ('investigation.', 18), ('henry.', 18), ('captain', 18), ('colour', 18), ('succeeded', 18), ('gazed', 18), ('exact', 17), ('dying', 17), ('grace', 17), ('opportunity', 17), ('misfortune', 17), ('have,', 17), ('constable', 17), ("'it", 17), ('grimpen', 17), ('home.', 17), ('question,', 17), ('envelope', 17), ('lines', 17), ('result', 17), ('to.', 17), ('takes', 17), ('girl,', 17), ('loose', 17), ("doctor's", 17), ('fled', 17), ('completely', 17), ('violent', 17), ('regret', 17), ('mile', 17), ('changed', 17), ('lined', 17), ('sure,', 17), ('dancing', 17), ('task', 17), ('rang', 17), ('lane', 17), ('rise', 17), ('park', 17), ('work,', 17), ('calling', 17), ('offer', 17), ('mention', 17), ('shock', 17), ('noticed', 17), ('pointing', 17), ('"i\'ve', 17), ('dull', 17), ('incidents', 17), ('cases,', 17), ('"now', 17), ('ways', 17), ('obliged', 17), ('chapter', 17), ('still,', 17), ('week,', 17), ('track.', 17), ('small,', 17), ('accustomed', 17), ('night."', 17), ('buried', 17), ('queer', 17), ("isn't", 17), ('obviously', 17), ('bed.', 17), ('facts.', 17), ('so,"', 17), ('grim', 17), ('precious', 17), ('yard', 17), ('hopes', 17), ('talking', 17), ('deduce', 17), ('effort', 17), ('worked', 17), ('prefer', 17), ('path,', 17), ('soul', 17), ('her."', 17), ('words,', 17), ('coronet', 17), ('talked', 17), ('remark', 17), ('wound', 17), ('drawing', 17), ('ago.', 17), ('worst', 17), ('careful', 17), ('watch', 17), ('disappeared', 17), ('greek', 17), ('gold', 17), ('light,', 16), ('questioning', 16), ('conclusion', 16), ('lamp,', 16), ('heads', 16), ('death.', 16), ('school', 16), ('"only', 16), ('innocent', 16), ("wouldn't", 16), ('cab,', 16), ('informed', 16), ('bowed', 16), ('names', 16), ('imagined', 16), ('"nothing', 16), ('yard,', 16), ('possession', 16), ('gather', 16), ('murdered', 16), ('manner.', 16), ('occasionally', 16), ('relations', 16), ('kitchen', 16), ('were,', 16), ('twisted', 16), ('"come,', 16), ('moon', 16), ('year.', 16), ('laying', 16), ('entered.', 16), ('"dear', 16), ('bought', 16), ('reference', 16), ('"\'well,', 16), ('rubbed', 16), ('stairs', 16), ('puzzled', 16), ('arrested', 16), ('charming', 16), ('mycroft', 16), ('"\'yes,', 16), ('subject', 16), ('question.', 16), ('clever', 16), ('missed', 16), ('hopkins.', 16), ('yours,', 16), ('ordered', 16), ('cold,', 16), ('fear,', 16), ('amazement.', 16), ('description', 16), ('truth.', 16), ('gone,', 16), ('clean', 16), ('credit', 16), ('tossed', 16), ('bitter', 16), ('colonel.', 16), ('whence', 16), ('it!"', 16), ('maid,', 16), ('england.', 16), ('weapon', 16), ('assistance', 16), ('absence', 16), ('ah,', 16), ('animal', 16), ('endeavouring', 16), ('vanished', 16), ('peering', 16), ('matter."', 16), ('"just', 16), ('post', 16), ('armchair', 16), ('hill', 16), ('particularly', 16), ('admirable', 16), ('devil', 16), ('test', 16), ('worse', 16), ('phelps', 16), ('thing,', 16), ('days,', 16), ('"then,', 16), ('tragic', 16), ('hide', 16), ('"these', 16), ('fortunate', 16), ('hound,', 16), ('bell,', 16), ('upstairs', 16), ('east', 16), ('hair,', 16), ('air.', 16), ('swept', 16), ('town.', 16), ('"\'oh,', 16), ('trees', 16), ('smell', 16), ('men.', 16), ('me!', 16), ('me?', 16), ('settle', 16), ('enough.', 16), ('spoke,', 16), ('dressed,', 16), ('stairs,', 16), ('"can', 16), ('secured', 16), ('corridor', 16), ('outside,', 16), ('lock', 16), ('dozen', 16), ('knees', 16), ('suspicions', 16), ('picture', 15), ('plain', 15), ('time."', 15), ('action.', 15), ('world,', 15), ('considerably', 15), ('nature,', 15), ('cheeks', 15), ('musgrave', 15), ('own.', 15), ('contents', 15), ('excited', 15), ("god's", 15), ('holdernesse', 15), ('character,', 15), ('efforts', 15), ('concealed', 15), ('walls', 15), ('mistress', 15), ('strongly', 15), ('pale,', 15), ('lady.', 15), ('essential', 15), ('match', 15), ('attached', 15), ('know?"', 15), ('field', 15), ('aside', 15), ('smith', 15), ('boscombe', 15), ('detail', 15), ('violence', 15), ('traced', 15), ('stapleton,', 15), ('sympathy', 15), ('murderer', 15), ("one's", 15), ('do?', 15), ('beat', 15), ("couldn't", 15), ('attention.', 15), ('mouth.', 15), ('bell.', 15), ('supper', 15), ('marry', 15), ('associated', 15), ('silent,', 15), ('pick', 15), ('stair,', 15), ('suggestive', 15), ('hope,', 15), ('guess', 15), ('wall,', 15), ('hotel.', 15), ('whispered', 15), ('carruthers,', 15), ('hut', 15), ('book', 15), ('alec', 15), ('concerned', 15), ('letter.', 15), ('"there\'s', 15), ('barclay', 15), ('paced', 15), ('old-fashioned', 15), ('poured', 15), ('possible.', 15), ('presume', 15), ('leaves', 15), ('large,', 15), ('blind', 15), ('cigar', 15), ('tied', 15), ('proof', 15), ('circle', 15), ('clear,', 15), ('soft', 15), ('length', 15), ('letters,', 15), ('interests', 15), ('fierce', 15), ('mistake', 15), ('wheels', 15), ('beginning', 15), ('smoked', 15), ('on,', 15), ('club', 15), ('promised', 15), ('dry', 15), ('agent', 15), ('yesterday,', 15), ('that."', 15), ('bullet', 15), ('realize', 15), ('name.', 15), ('guard', 15), ('price', 15), ('gang', 15), ('bottle', 15), ('flew', 15), ('smiling', 15), ('"certainly,', 15), ('woodley', 15), ('member', 15), ('two,', 15), ('solution', 15), ('goose', 15), ('joseph', 15), ('shoulder', 15), ('oxford', 15), ('golden', 15), ('apparently', 15), ('serve', 15), ('retired', 15), ('distant', 15), ('justice', 15), ('brandy', 15), ('facts,', 15), ('amazement', 15), ('clad', 15), ('european', 15), ('successful', 15), ('speaking', 15), ('carpet', 15), ('precaution', 14), ('building', 14), ('knew,', 14), ('busts', 14), ('merripit', 14), ('move', 14), ('showing', 14), ('secure', 14), ('indian', 14), ('recognize', 14), ('country,', 14), ('bundle', 14), ('handsome', 14), ("colonel's", 14), ('scream', 14), ('study.', 14), ('congratulate', 14), ('eleven', 14), ('them?"', 14), ('are.', 14), ('brother.', 14), ('rest,', 14), ('burning', 14), ('yew', 14), ('peeped', 14), ('satisfied', 14), ('"look', 14), ('staunton', 14), ('fired', 14), ('ever.', 14), ('happened,', 14), ('advertisement', 14), ('event', 14), ('needed', 14), ('request', 14), ('roof', 14), ('besides', 14), ("what's", 14), ('sufficient', 14), ('express', 14), ('hall."', 14), ('weak', 14), ('sir?"', 14), ('line,', 14), ('killed', 14), ('cunningham', 14), ('bird', 14), ('laughing.', 14), ('so?"', 14), ('who,', 14), ('consult', 14), ('oldacre', 14), ('useful', 14), ('secretary', 14), ('hard,', 14), ('managed', 14), ('grave', 14), ('deepest', 14), ('watson."', 14), ('former', 14), ('thumb', 14), ('cigarette', 14), ('curve', 14), ('perceive', 14), ('villain', 14), ('add', 14), ('solved', 14), ('village', 14), ('alert', 14), ('ceased', 14), ('smile.', 14), ('seat', 14), ('pressing', 14), ('continued,', 14), ('lips.', 14), ('clear.', 14), ('now."', 14), ('deny', 14), ('inn', 14), ('boot', 14), ('heir', 14), ("'the", 14), ('porter', 14), ('fond', 14), ('is."', 14), ('grief', 14), ('legs', 14), ('furniture', 14), ('doors', 14), ('mad', 14), ('memory', 14), ('command', 14), ('victim', 14), ('garden.', 14), ('ruin', 14), ('"all', 14), ('days.', 14), ('stayed', 14), ('tracks', 14), ('throat', 14), ('italian', 14), ('madam,', 14), ('point,', 14), ('rushing', 14), ('swung', 14), ('came.', 14), ('charing', 14), ('badly', 14), ('escape', 14), ('modern', 14), ('contained', 14), ('brows', 13), ('matter?"', 13), ('then?', 13), ('american', 13), ('irene', 13), ('breakfast,', 13), ('importance.', 13), ('sir;', 13), ('world.', 13), ('treaty', 13), ('introduce', 13), ('food', 13), ('years.', 13), ('harrison', 13), ('rolled', 13), ('minutes.', 13), ('dared', 13), ('existence', 13), ('referred', 13), ('importance,', 13), ('unpleasant', 13), ('brow', 13), ('honest', 13), ('closely', 13), ('carruthers', 13), ('clapped', 13), ('added', 13), ('bar', 13), ('passage.', 13), ('brain', 13), ('waste', 13), ('"god', 13), ('astonishment.', 13), ('dim', 13), ('flung', 13), ('police.', 13), ('thief', 13), ('opium', 13), ('risen', 13), ('correct,', 13), ("'and", 13), ('ashamed', 13), ('buy', 13), ('machine', 13), ('property', 13), ('highest', 13), ('streets', 13), ('tragedy.', 13), ('ross,', 13), ('remove', 13), ('did.', 13), ('low,', 13), ('mortimer.', 13), ('else.', 13), ('vain', 13), ('worthy', 13), ('men,', 13), ('bringing', 13), ('"our', 13), ('feelings', 13), ('moran', 13), ('ears.', 13), ('footsteps', 13), ('trivial', 13), ('ones', 13), ("i'd", 13), ('person.', 13), ('inner', 13), ('position,', 13), ('people,', 13), ('aware,', 13), ('hands."', 13), ('seriously', 13), ('go,', 13), ('arrival', 13), ('hurt', 13), ('clair', 13), ('capital', 13), ('"\'that', 13), ('chill', 13), ('clearing', 13), ('presume,', 13), ('wicked', 13), ('nose,', 13), ('halloa!', 13), ('thing.', 13), ('gained', 13), ('horror.', 13), ('do."', 13), ('powerful', 13), ('phelps,', 13), ('check', 13), ('separate', 13), ('fears', 13), ('no.', 13), ('safe,', 13), ('too.', 13), ('jonas', 13), ('policeman', 13), ('definite', 13), ('gesture', 13), ('broad,', 13), ('appearance.', 13), ('luck', 13), ('feet.', 13), ('firm', 13), ('deserted', 13), ('continually', 13), ('that,"', 13), ('noise', 13), ('lips,', 13), ('rooms,', 13), ('bag', 13), ('year,', 13), ('shattered', 13), ('gasped.', 13), ('dead,', 13), ("king's", 13), ('cared', 13), ('amount', 13), ('times,', 13), ('fainted', 13), ('way."', 13), ('inches', 13), ('left,', 13), ('stout', 13), ('one,"', 13), ('eventually', 13), ('appeal', 13), ('to-night', 13), ('produced', 13), ('surprise.', 13), ('stick,', 13), ('age', 13), ('screamed', 13), ('surprised,', 13), ('assistant', 13), ('bless', 13), ('dining-room', 13), ('again."', 13), ('accept', 13), ('metal', 13), ('chuckled', 13), ('"yes,"', 13), ('observed.', 13), ('air,', 13), ('charlington', 13), ('train.', 13), ('me!"', 13), ('position.', 13), ('family,', 13), ('square,', 13), ('holmes!', 13), ('becomes', 13), ('well."', 13), ('found,', 13), ('manner,', 13), ('excitement', 13), ('city.', 13), ('enormous', 13), ('endeavoured', 13), ('otherwise', 13), ('you!"', 13), ('listen', 13), ('copper', 13), ('cyclist', 13), ("o'clock,", 13), ('runs', 13), ('pressed', 13), ('dramatic', 13), ('coffee', 13), ('these,', 13), ('horse,', 13), ('discuss', 13), ('things,', 12), ('true,', 12), ('venture', 12), ('begged', 12), ('particulars', 12), ('mysterious', 12), ('angle', 12), ('sprung', 12), ('beast', 12), ('ourselves,', 12), ('smiling.', 12), ('warn', 12), ('"don\'t', 12), ('exposed', 12), ('lucas', 12), ('off.', 12), ('lodge', 12), ('proud', 12), ('figures', 12), ('suppose,', 12), ('delighted', 12), ('pen', 12), ('smile,', 12), ('advise', 12), ('league', 12), ("night's", 12), ('heart,', 12), ('k.', 12), ('everything.', 12), ('crept', 12), ('long.', 12), ('high,', 12), ('for.', 12), ('yourself,', 12), ('nice', 12), ('wilson,', 12), ('fully', 12), ('grip', 12), ('plainly', 12), ('events,', 12), ('burglar', 12), ('body,', 12), ('system', 12), ("day's", 12), ('rare', 12), ('hour.', 12), ('holmes;', 12), ('fatal', 12), ('holmes!"', 12), ('patient', 12), ('lunch', 12), ('church', 12), ('hunter', 12), ('suspect', 12), ('blessington', 12), ('forehead', 12), ('rock', 12), ('communicate', 12), ('kindness', 12), ('arranged', 12), ('parted', 12), ('inside,', 12), ('strongest', 12), ("you.'", 12), ('eagerly', 12), ('believe,', 12), ('waterloo', 12), ('thoroughly', 12), ('dress,', 12), ('records', 12), ('carriage,', 12), ('stable', 12), ('expression.', 12), ('solid', 12), ('cubitt', 12), ('described', 12), ('god,', 12), ('starting', 12), ('agree', 12), ('servant', 12), ('finds', 12), ('society', 12), ('master.', 12), ('partly', 12), ('strange,', 12), ('favour', 12), ('"are', 12), ('solve', 12), ('deduced', 12), ('sounds', 12), ('gazing', 12), ('faces', 12), ('addressed', 12), ('success.', 12), ('confidence.', 12), ('heels', 12), ('anger', 12), ('passed.', 12), ('intend', 12), ('gently', 12), ('books', 12), ('brougham', 12), ('outer', 12), ('stole', 12), ('hugo', 12), ('clay', 12), ('kind.', 12), ('complex', 12), ('ground,', 12), ('perceive,', 12), ('forgive', 12), ('bedroom.', 12), ('to-day', 12), ('character.', 12), ('instructions', 12), ('tin', 12), ('swift', 12), ('surprise,', 12), ('cloth', 12), ('conviction', 12), ('reasoning', 12), ('list', 12), ("'but", 12), ('sold', 12), ('here,"', 12), ('space', 12), ('ladies', 12), ('ends', 12), ('fill', 12), ('client,', 12), ('treated', 12), ('to-night.', 12), ('meanwhile,', 12), ('falling', 12), ('blame', 12), ('barrymore,', 12), ('interesting.', 12), ('corner.', 12), ('smiled', 12), ('acknowledge', 12), ('nearer', 12), ('lyons', 12), ('heavens,', 12), ('fly', 12), ('cabman', 12), ('hurry', 12), ('scientific', 12), ('advanced', 12), ('"has', 12), ('heard,', 12), ('unlikely', 12), ('to-night,', 12), ('portion', 12), ("it?'", 12), ('brunton', 12), ('devoted', 12), ('manager', 12), ('rolling', 12), ('russian', 12), ('direct', 11), ('hotel,', 11), ("then?'", 11), ('succeed', 11), ('whoever', 11), ('apply', 11), ('answer,', 11), ('rattled', 11), ('responsibility', 11), ('laugh.', 11), ('books,', 11), ('tuesday', 11), ('return.', 11), ('inform', 11), ('curiosity', 11), ('trouble.', 11), ('"\'no,', 11), ('another,', 11), ('recall', 11), ('visible', 11), ('trees.', 11), ('mire,', 11), ('despair', 11), ('quivering', 11), ('doctor.', 11), ('highly', 11), ('indications', 11), ('habits', 11), ('escape.', 11), ('charles,', 11), ('surrounded', 11), ('breathing', 11), ('similar', 11), ('art', 11), ('marriage.', 11), ('suppose?"', 11), ('rested', 11), ('plaster', 11), ("o'clock.", 11), ('de', 11), ('please', 11), ('material', 11), ('trevor', 11), ('alive', 11), ('plan', 11), ('minister', 11), ('introduced', 11), ('thing,"', 11), ('fellow.', 11), ('now,"', 11), ('pleased', 11), ('terms', 11), ('you?', 11), ('severe', 11), ('established', 11), ('orders', 11), ('regent', 11), ('commonplace', 11), ('land', 11), ('god!', 11), ('hint', 11), ('short,', 11), ('earn', 11), ('"hum!', 11), ('laura', 11), ('discover', 11), ('party', 11), ('remarkably', 11), ('lovely', 11), ('pacing', 11), ('stained', 11), ('winding', 11), ('faint', 11), ('prime', 11), ('absorbed', 11), ('trifling', 11), ('first.', 11), ('not?', 11), ('rounded', 11), ('coachman', 11), ('"ha!', 11), ('blood.', 11), ('securities', 11), ('wounded', 11), ('devote', 11), ('considered', 11), ('generally', 11), ('final', 11), ('fantastic', 11), ('chest', 11), ('sensational', 11), ('barred', 11), ('anxiety', 11), ('lucky', 11), ('lawn,', 11), ('delivered', 11), ('windows.', 11), ('message,', 11), ('tea', 11), ('stream', 11), ('word.', 11), ('presents', 11), ('preserve', 11), ('his,', 11), ('percy', 11), ("it.'", 11), ('handkerchief', 11), ('hudson,', 11), ('black,', 11), ('attack', 11), ('please,', 11), ('trembling', 11), ('witness', 11), ('pearl', 11), ('refuse', 11), ('or,', 11), ('height,', 11), ('gathered', 11), ('spend', 11), ('using', 11), ('cost', 11), ('waved', 11), ('identity', 11), ('won', 11), ('peace', 11), ('block', 11), ('came,', 11), ('theories', 11), ('story,', 11), ('street."', 11), ('"yes.', 11), ('joined', 11), ("here's", 11), ('pool', 11), ('desired', 11), ('unlocked', 11), ('dinner', 11), ('hollow', 11), ('windows,', 11), ('obtained', 11), ('expecting', 11), ('offices', 11), ('arm.', 11), ('darted', 11), ('investigation,', 11), ('to-morrow,', 11), ('did."', 11), ('royal', 11), ('announced', 11), ('snatched', 11), ('know."', 11), ('playing', 11), ('has,', 11), ('dish', 11), ('entrance', 11), ('hearing', 11), ('hundreds', 11), ('distinct', 11), ('dressing-gown', 11), ('sound,', 11), ('dimly', 11), ('melancholy', 11), ('net', 11), ('attention,', 11), ('method', 11), ('northumberland', 11), ('intended', 11), ('returned.', 11), ('"excellent!"', 11), ('cup', 11), ('key.', 11), ('lip', 11), ('pushing', 11), ('brains', 11), ('history', 11), ('boots,', 11), ('gain', 11), ('evidence,', 11), ('"\'ah,', 11), ('lane,', 11), ('honourable', 11), ('well-known', 11), ('house."', 11), ('public,', 11), ('hair.', 11), ('anything.', 11), ('grasped', 11), ('interest,', 11), ('closing', 11), ('brother,', 11), ('journey.', 11), ('briony', 11), ('admiration', 11), ('injury', 11), ('might,', 11), ('moments', 11), ('gloomy', 11), ('well,"', 11), ('unique', 10), ('haggard', 10), ('day."', 10), ('of.', 10), ('tree', 10), ('huxtable,', 10), ('troubled', 10), ('"an', 10), ('ghastly', 10), ('estate,', 10), ('presume?"', 10), ('possible,', 10), ('hurled', 10), ('coat,', 10), ('sofa', 10), ('corridor,', 10), ('dense', 10), ('outside.', 10), ('gleamed', 10), ('oak', 10), ('forgotten', 10), ('excitement.', 10), ('flight', 10), ('lodgings', 10), ('stoke', 10), ('pencil', 10), ('thrill', 10), ('daresay', 10), ('swinging', 10), ('cool', 10), ('residence', 10), ("girl's", 10), ('faced', 10), ('handsome,', 10), ('son.', 10), ('acting', 10), ('mystery.', 10), ('that?', 10), ('depend', 10), ('murderous', 10), ('immediate', 10), ('pounds,', 10), ('visitor,', 10), ('endeavored', 10), ('"well,"', 10), ('carey', 10), ('conclusions', 10), ('summer', 10), ('respect', 10), ('lighting', 10), ('reports', 10), ('household', 10), ('observation', 10), ('graphic', 10), ('fighting', 10), ('been,', 10), ('crouching', 10), ('fight', 10), ('child.', 10), ('realized', 10), ('mottled', 10), ('induce', 10), ('pursued', 10), ('meanwhile', 10), ('lest', 10), ('palm', 10), ('branches', 10), ('cellar', 10), ('mercy', 10), ('ears', 10), ('principal', 10), ('problems', 10), ('late.', 10), ('godolphin', 10), ('present,', 10), ('leather', 10), ('affair.', 10), ('curved', 10), ('frame', 10), ('gloom', 10), ('strikes', 10), ('ross', 10), ('wealth', 10), ('george', 10), ('money.', 10), ('legal', 10), ('to-morrow."', 10), ('trained', 10), ('wants', 10), ('rid', 10), ('humble', 10), ('hideous', 10), ('hit', 10), ('distinctly', 10), ('striking', 10), ('crime."', 10), ('neat', 10), ('advance', 10), ('rode', 10), ('inside.', 10), ('college', 10), ('roylott', 10), ('orange', 10), ('"well?"', 10), ('footmarks', 10), ("professor's", 10), ('occur', 10), ('fellow,"', 10), ('water,', 10), ('startled', 10), ('hurrying', 10), ('triumph', 10), ('grasp', 10), ('halted', 10), ('gentle', 10), ('den', 10), ('pity', 10), ('stretch', 10), ('built', 10), ('devonshire', 10), ('valley', 10), ('jabez', 10), ('judge', 10), ('wretched', 10), ('i;', 10), ('wired', 10), ('lens', 10), ('business."', 10), ('reply', 10), ('cord', 10), ('turns', 10), ('lights', 10), ('daily', 10), ('livid', 10), ('house?"', 10), ('useless', 10), ('inch', 10), ('ha!', 10), ('aroused', 10), ('much,', 10), ('conceivable', 10), ('life."', 10), ('upstairs.', 10), ('nothing."', 10), ('proceed', 10), ('pulling', 10), ('stooped', 10), ('wealthy', 10), ('contrast', 10), ('afternoon,', 10), ('"\'my', 10), ('school.', 10), ('"you\'ll', 10), ('cigarette.', 10), ('afford', 10), ('mud', 10), ('since.', 10), ('whispered.', 10), ('"\'where', 10), ('correct', 10), ('unnatural', 10), ('wood,', 10), ('occasional', 10), ('case,"', 10), ('fifteen', 10), ('direction,', 10), ('foolish', 10), ('eustace', 10), ("'that", 10), ('arrive', 10), ('expert', 10), ('spoke.', 10), ('fault', 10), ('danger.', 10), ('blew', 10), ('master,', 10), ('sailor', 10), ('sight.', 10), ('true.', 10), ('ever,', 10), ('baskerville.', 10), ('hydraulic', 10), ('norfolk', 10), ('hole', 10), ('handle', 10), ('combination', 10), ('saw,', 10), ('round.', 10), ('article', 10), ('agents', 10), ('expanse', 10), ('husband,', 10), ('constables', 10), ('attitude', 10), ('reward', 10), ('view,', 10), ('wearing', 10), ('plenty', 10), ('flat', 10), ('curtain', 10), ('newspaper', 10), ('simpson', 10), ('boat', 10), ('openshaw', 10), ('"ah!', 10), ('previous', 10), ('toller', 10), ('major', 10), ('lurking', 10), ('much.', 10), ('scribbled', 10), ('watson!', 10), ('sides', 10), ('wedding', 10), ('convenient', 10), ('choose', 10), ('rattle', 10), ('documents', 10), ('adventures', 10), ('shade', 10), ('pains', 10), ('mcfarlane', 10), ('chemical', 10), ('confession', 10), ('join', 10), ('advice.', 10), ('to?"', 10), ('front.', 10), ('regard', 10), ('ancient', 10), ('courage', 10), ('describe', 10), ('teeth', 10), ('police."', 10), ('moment.', 10), ('electric', 10), ('thinks', 10), ('stair', 10), ('building,', 10), ('hidden', 10), ('visited', 10), ('flying', 10), ('"mrs.', 10), ('lantern', 10), ('stones', 10), ('observe,', 10), ('print', 10), ('mistaken', 10), ('see,"', 10), ('colour,', 10), ('silence,', 10), ('increased', 10), ('laugh', 10), ('nose', 10), ('london?"', 10), ('massive', 10), ('rigid', 10), ('company.', 10), ('horses', 10), ('address,', 10), ('sea', 10), ('dead.', 10), ('threatened', 10), ('reason,', 10), ('descended', 10), ('knee.', 10), ('press', 10), ('fog', 10), ('weather', 10), ('soames,', 10), ("wife's", 10), ('recovering', 10), ('shake', 10), ('grace,', 10), ('wrong.', 10), ('flight.', 10), ('hill,', 10), ('expected,', 10), ('another.', 10), ('starting-point', 10), ('ascended', 10), ('recover', 10), ('pipe,', 9), ('"any', 9), ('link', 9), ('wondering', 9), ('irregular', 9), ('appearance,', 9), ('"\'then', 9), ('enable', 9), ('rooms.', 9), ('grotesque', 9), ('readily', 9), ('train,', 9), ('start.', 9), (':', 9), ('quarrel', 9), ('swore', 9), ('stake', 9), ('reasoner', 9), ('curled', 9), ('agreed', 9), ('cards', 9), ('onward', 9), ('afterwards,', 9), ('grizzled', 9), ('amused', 9), ('walk,', 9), ('wear', 9), ('match,', 9), ('"may', 9), ('exclamation', 9), ('faded', 9), ('clenched', 9), ('allusion', 9), ('instant.', 9), ('nearest', 9), ('neighbourhood,', 9), ('relation', 9), ('"with', 9), ('tell.', 9), ("uncle's", 9), ('adair', 9), ('observed,', 9), ('cap', 9), ('families', 9), ('there?', 9), ('presently', 9), ('stapleton.', 9), ('ways,', 9), ('pitiable', 9), ('personally', 9), ('corner,', 9), ('bare', 9), ('america', 9), ('weapon.', 9), ('brown,', 9), ('see."', 9), ('riding', 9), ('together."', 9), ('him!"', 9), ('eyebrows', 9), ('works', 9), ('framed', 9), ('whole,', 9), ('forehead,', 9), ('marriage,', 9), ('succession', 9), ('abbey', 9), ("you've", 9), ('quiet,', 9), ('else?"', 9), ('stain', 9), ('hut,', 9), ('knife,', 9), ('yourself.', 9), ('silence.', 9), ('mean?"', 9), ('inquiry.', 9), ('grounds,', 9), ('"excuse', 9), ('visitor.', 9), ('folded', 9), ('soul.', 9), ('chief', 9), ('box,', 9), ('murder.', 9), ('blinds', 9), ('time,"', 9), ('conveyed', 9), ('pledge', 9), ('sombre', 9), ('flash', 9), ('itself.', 9), ('countess', 9), ('least,', 9), ('then.', 9), ('knock', 9), ('comfortable', 9), ('crown', 9), ('forty', 9), ('"which', 9), ('beard,', 9), ('soames', 9), ('heading', 9), ('this?', 9), ('supreme', 9), ('lad,', 9), ('"anything', 9), ('energetic', 9), ('patience', 9), ('obtain', 9), ('wild,', 9), ('everyone', 9), ('arrange', 9), ('signal', 9), ('people.', 9), ('methods,', 9), ('dust', 9), ('row', 9), ('disturbed', 9), ('book,', 9), ('wonderful', 9), ('child,', 9), ('young,', 9), ('containing', 9), ('assistance.', 9), ('absent', 9), ('uttered', 9), ('profit', 9), ('within.', 9), ('moor."', 9), ('hansom', 9), ('trousers,', 9), ('ship.', 9), ('nature.', 9), ('better.', 9), ('unnecessary', 9), ('daughter,', 9), ("milverton's", 9), ('woods', 9), ('hours,', 9), ('setting', 9), ('simon,', 9), ('extended', 9), ('"about', 9), ('pall', 9), ('man,"', 9), ('manage', 9), ('cyril', 9), ('pride', 9), ('health', 9), ('wing', 9), ('taken.', 9), ('hills', 9), ('heavens!"', 9), ('"exactly."', 9), ('intelligence', 9), ('help,', 9), ('removed', 9), ('bureau,', 9), ('skull', 9), ('baronet.', 9), ('resident', 9), ('brackenstall', 9), ('ears,', 9), ('result.', 9), ('ruined', 9), ('heavy,', 9), ('reported', 9), ('discovery', 9), ('altogether', 9), ('rush', 9), ('owner', 9), ('jagged', 9), ('safely', 9), ('gigantic', 9), ('obvious.', 9), ('horribly', 9), ('telegraph', 9), ('forth', 9), ('custom', 9), ('you!', 9), ('clue.', 9), ('popular', 9), ('granite', 9), ('nerve', 9), ('dealing', 9), ('dog,', 9), ('line.', 9), ('attracted', 9), ('sad', 9), ('is.', 9), ('lamps', 9), ('burglars', 9), ('"what,', 9), ('joy', 9), ('heard.', 9), ('sensitive', 9), ('smiled.', 9), ('branch', 9), ('moran,', 9), ('woking', 9), ('retain', 9), ('shutters', 9), ('dartmoor', 9), ('brass', 9), ('inn,', 9), ('address.', 9), ('lane.', 9), ('curiously', 9), ('eye.', 9), ('wrung', 9), ('stables', 9), ('spirit', 9), ('man."', 9), ('news,', 9), ('loud', 9), ("mother's", 9), ('luggage', 9), ('stage', 9), ('uncontrollable', 9), ('done."', 9), ('development', 9), ('rope', 9), ('water.', 9), ("heaven's", 9), ('"none."', 9), ("sister's", 9), ('law,', 9), ("wasn't", 9), ('banker', 9), ('outlined', 9), ('retained', 9), ('heaven', 9), ('cloud', 9), ('limbs', 9), ('sequence', 9), ('opened,', 9), ('hatred', 9), ('astonished', 9), ('journey,', 9), ('becoming', 9), ('satisfaction.', 9), ('various', 9), ('could,', 9), ('laughed.', 9), ('old,', 9), ('nights', 9), ('returned,', 9), ('doctor,"', 9), ('questions,', 9), ('is?"', 9), ('welcome', 9), ('warned', 9), ('sums', 9), ('exercise', 9), ('notebook', 9), ('purely', 9), ('according', 9), ('borne', 9), ('hand."', 9), ('overtake', 9), ('hatherley', 9), ('staggered', 9), ('band', 9), ('heels.', 9), ('pockets', 9), ('explanation.', 9), ('europe', 9), ('with,', 9), ('sitting-room,', 9), ('scrawled', 9), ('secrecy', 9), ('stock', 9), ('thus', 9), ('secret.', 9), ('pavement', 9), ('advice,', 9), ('suggested.', 9), ('job', 9), ('rocks', 9), ('spirits', 9), ('features,', 9), ("he'll", 9), ("master's", 9), ('purpose.', 9), ('roused', 9), ('think.', 9), ('voices', 9), ("'there", 9), ('success', 9), ('death."', 9), ('supply', 9), ('violet', 9), ('friendly', 9), ('believed', 9), ('ashes', 9), ('office.', 9), ('morse', 9), ('laughing', 9), ('inexplicable', 9), ('barclay,', 9), ('mission', 9), ('majesty', 9), ('hour."', 9), ('plunged', 9), ('fourth', 9), ('permit', 9), ('bird,', 9), ('figure,', 9), ('contact', 9), ('overcoat', 9), ('fix', 9), ('proofs', 9), ('married,', 9), ('blazing', 9), ('habits,', 9), ('he?"', 9), ('affair,', 9), ('horses,', 9), ('stoner', 9), ('public.', 9), ('"you\'re', 9), ('saturday', 9), ('quarters', 9), ('america.', 9), ('"could', 9), ('ivy', 8), ('expressive', 8), ('"excellent!', 8), ('coroner', 8), ('despair.', 8), ('stepfather', 8), ('conjectured', 8), ('mental', 8), ('patch', 8), ('still.', 8), ('clouds', 8), ('proceeded', 8), ('ear.', 8), ('staying', 8), ('heels,', 8), ('tide', 8), ('tangled', 8), ('phelps.', 8), ('damp', 8), ('promises', 8), ('depends', 8), ('ingenious', 8), ('crack', 8), ('shelf', 8), ('gold,', 8), ('time?"', 8), ("gentleman's", 8), ('separated', 8), ('eduardo', 8), ('"had', 8), ('problem.', 8), ('think."', 8), ('inhabited', 8), ('"were', 8), ('dispatched', 8), ('"none', 8), ('opens', 8), ('examined,', 8), ('moorland', 8), ('enough,"', 8), ('theresa', 8), ('goose,', 8), ('deep,', 8), ('tapped', 8), ('tracey', 8), ('hesitated', 8), ('willoughby', 8), ('been.', 8), ('stains', 8), ('pips', 8), ('picking', 8), ('cottage,', 8), ('recently', 8), ('servants.', 8), ('is,"', 8), ('parts', 8), ('establishment', 8), ('flattened', 8), ('solution.', 8), ('beppo', 8), ('clock', 8), ('objection', 8), ('pycroft,', 8), ('supposition', 8), ('really,', 8), ('blaze', 8), ('drive.', 8), ('abandoned', 8), ('chanced', 8), ('specialist', 8), ("horse's", 8), ('back."', 8), ('waistcoat', 8), ('spotted', 8), ('support', 8), ('thick,', 8), ('fool', 8), ('passed,', 8), ('force,', 8), ('sovereign', 8), ('scent', 8), ('rude', 8), ('note,', 8), ('sell', 8), ('approaching', 8), ('to-day,', 8), ('"never', 8), ('easier', 8), ('dog-cart', 8), ('duties', 8), ('better,', 8), ('situation.', 8), ('agency', 8), ('practice,', 8), ('groom', 8), ('temper', 8), ('bending', 8), ('beauty', 8), ('strain', 8), ('shoulders,', 8), ('numerous', 8), ('collection', 8), ('elaborate', 8), ('shadows', 8), ('l.', 8), ('profession.', 8), ('trust,', 8), ('meantime', 8), ('goodness', 8), ('select', 8), ('largest', 8), ('horner', 8), ('answer."', 8), ('solemn', 8), ('firm,', 8), ("haven't", 8), ('ship', 8), ('screen', 8), ('cigarettes', 8), ('responsible', 8), ('establish', 8), ('law.', 8), ('left.', 8), ('flora', 8), ('god!"', 8), ('extent', 8), ('indicated', 8), ('alternative', 8), ('coroner:', 8), ('brute', 8), ('stately', 8), ('disappeared,', 8), ('bitterly', 8), ('present.', 8), ('suppressed', 8), ('mixture', 8), ('quest', 8), ('overtaken', 8), ('now!"', 8), ('expressed', 8), ('come."', 8), ('shirt', 8), ("son's", 8), ('criminals', 8), ('gleaming', 8), ('armstrong', 8), ('supposed', 8), ('hansom,', 8), ('enough."', 8), ('preserved', 8), ('strong,', 8), ('"he\'s', 8), ('tweed', 8), ('subject.', 8), ('past,', 8), ('distinguished', 8), ('empty.', 8), ('name?"', 8), ("wit's", 8), ('laughter.', 8), ('ritual', 8), ('passionate', 8), ('mother,', 8), ('emotion', 8), ('employed', 8), ('window?"', 8), ('swandam', 8), ('incredible', 8), ('veil', 8), ('satisfy', 8), ('places', 8), ('windibank', 8), ('amiable', 8), ('huts', 8), ('below,', 8), ('magnificent', 8), ('"witness:', 8), ('prompt', 8), ('monstrous', 8), ('in."', 8), ('alert,', 8), ('remaining', 8), ('is!"', 8), ('concluded', 8), ('deed', 8), ('end."', 8), ('plucked', 8), ('conversation,', 8), ('employ', 8), ('napoleon', 8), ('cries', 8), ('fast', 8), ('inquiry,', 8), ('noted', 8), ('alley', 8), ('completed', 8), ('needs', 8), ('pure', 8), ('dressing-gown,', 8), ('treat', 8), ('seen,', 8), ('needed.', 8), ('sleepy', 8), ('sleeve.', 8), ('betrayed', 8), ('perceived', 8), ('fits', 8), ('metallic', 8), ('lived,', 8), ('inconceivable', 8), ('to,', 8), ('rising,', 8), ('inquired', 8), ('furiously', 8), ('be?', 8), ('earnestly', 8), ('"no.', 8), ('"\'if', 8), ('visitors', 8), ('legend', 8), ('afraid,', 8), ('awful', 8), ('across,', 8), ('elder', 8), ('information.', 8), ('steadily', 8), ('horrified', 8), ('white,', 8), ('sweet', 8), ('crowd', 8), ('him?', 8), ('girl.', 8), ('evening."', 8), ('alive.', 8), ('permission', 8), ('repeated', 8), ('skill', 8), ('admitted', 8), ('ushered', 8), ('"indeed!', 8), ('lodge,', 8), ('declared', 8), ('geese', 8), ('cocked', 8), ('brook', 8), ('willing', 8), ('hayes', 8), ('utter', 8), ('scratch', 8), ('career.', 8), ('can.', 8), ('for?"', 8), ('"having', 8), ('accounts', 8), ('room?"', 8), ('beaten', 8), ('criminal.', 8), ('curse', 8), ('chamber,', 8), ('upward', 8), ('crawled', 8), ('astonishment,', 8), ('prendergast', 8), ('approach', 8), ('voyage', 8), ('houses,', 8), ('mine,', 8), ('villa', 8), ('ending', 8), ('"\'he', 8), ('travelled', 8), ('condition', 8), ('matters.', 8), ('say?"', 8), ('nurse', 8), ('truth."', 8), ('possible."', 8), ('sheer', 8), ('steal', 8), ('1000', 8), ('pull', 8), ('wandered', 8), ('narrative.', 8), ('employer', 8), ('malignant', 8), ('satisfaction', 8), ("henry's", 8), ('apology', 8), ('fortnight', 8), ('deduction', 8), ('do,"', 8), ('club,', 8), ('mantelpiece', 8), ('answer.', 8), ('norwood', 8), ('belief', 8), ('shop', 8), ('mantelpiece.', 8), ('plot', 8), ('miles,', 8), ('past.', 8), ('stood.', 8), ('drunken', 8), ('case?"', 8), ('fall.', 8), ('blurred', 8), ('sworn', 8), ('driver', 8), ('anyhow,', 8), ('outline', 8), ('terribly', 8), ('yourself?"', 8), ('clerk', 8), ('confessed', 8), ('backward', 8), ('clutched', 8), ('pain', 8), ('myself."', 8), ('farm', 8), ('glasses,', 8), ('this:', 8), ('grow', 8), ('door?"', 8), ('gilchrist,', 8), ('seat,', 8), ('opinion,', 8), ('measured', 8), ('helpless', 8), ('wilder', 8), ('study,', 8), ('stapletons', 8), ('example', 8), ('exchanged', 8), ('belonged', 8), ('important,', 8), ('compared', 8), ('actions', 8), ('puffing', 8), ('robbery', 8), ('merest', 8), ('gloom,', 8), ('grimesby', 8), ('seaman', 8), ('flush', 8), ('lascar', 8), ('stealthy', 8), ('since,', 8), ('more."', 8), ('fate.', 8), ('reading.', 8), ('gets', 8), ('with.', 8), ('doubt.', 8), ('"certainly', 8), ('after.', 8), ('trifle', 8), ('age.', 8), ('"indeed,', 8), ('practice.', 8), ('to-night?"', 8), ('resumed', 8), ('presence.', 8), ('yonder,', 8), ("you're", 8), ('research', 8), ('pictures', 8), ('watch.', 8), ('passion', 8), ('map', 8), ('paused', 8), ('others,', 8), ('characteristic', 8), ('"what!', 8), ('basis', 8), ('indication', 8), ('founded', 8), ('skin', 8), ('liberty', 8), ('peaceful', 8), ('doubted', 8), ('tossing', 8), ('articles', 8), ('dash', 8), ('middle-aged', 8), ('reasonable', 8), ("'what", 8), ('glimmer', 8), ('alone,', 8), ('impossible.', 8), ('supposing', 8), ('carey,', 8), ('doubts', 8), ('inquest.', 8), ('sinking', 8), ('spread', 8), ('awakened', 8), ('silk', 8), ('carpet,', 8), ('visit.', 8), ('loves', 8), ('abe', 8), ('physical', 8), ('cabinet', 8), ('part.', 8), ('hedge', 8), ('fitted', 8), ('then."', 8), ('breast,', 8), ('understand.', 8), ('submitted', 8), ('bright,', 8), ('directed', 8), ('mouth,', 8), ('trevelyan', 7), ('monday,', 7), ('"but,', 7), ('everything,', 7), ('surmise', 7), ('will.', 7), ('sending', 7), ('"\'why,', 7), ('breast', 7), ('described.', 7), ('agony', 7), ('downstairs', 7), ('"what\'s', 7), ('bulky', 7), ('inflicted', 7), ('grant', 7), ('first."', 7), ('yet,"', 7), ('possess', 7), ('wide', 7), ('platform.', 7), ('commission', 7), ('convulsive', 7), ('springing', 7), ('hiding', 7), ('maybe', 7), ('destined', 7), ('western', 7), ('nodded', 7), ('panting', 7), ('may,', 7), ('right-hand', 7), ('body.', 7), ('saving', 7), ('odd', 7), ('deed.', 7), ('homely', 7), ('reserve', 7), ("lestrade's", 7), ('neighbours', 7), ('overton', 7), ('smaller', 7), ('straight,', 7), ('murderer.', 7), ('stepfather,', 7), ('conditions', 7), ('tone', 7), ('shadowed', 7), ('onto', 7), ('motives', 7), ('vacant', 7), ('if,', 7), ('did,', 7), ('third,', 7), ('baronet,', 7), ('cigar.', 7), ('certainty', 7), ('surely,', 7), ('heath', 7), ('midnight', 7), ('chairs', 7), ('wildly', 7), ('abstracted', 7), ('sideboard,', 7), ('upon.', 7), ('replaced', 7), ('ear,', 7), ('railway', 7), ('leisure', 7), ('discovering', 7), ('paddington', 7), ('wander', 7), ('awaiting', 7), ('gipsies', 7), ('apart', 7), ('breathed', 7), ('grange', 7), ('themselves,', 7), ('blown', 7), ('murderer,', 7), ('mystery,', 7), ('solitary', 7), ('newly', 7), ('muttered', 7), ('colour.', 7), ('course.', 7), ('glowing', 7), ('presuming', 7), ('supplied', 7), ('wrist', 7), ('higher', 7), ('evidence.', 7), ('birds', 7), ('united', 7), ('martin,', 7), ('den,', 7), ('shocked', 7), ('logical', 7), ('housekeeper,', 7), ('cleared,', 7), ('detective,', 7), ('answers', 7), ('kind."', 7), ('"some', 7), ('servant.', 7), ('jove,', 7), ('brightly', 7), ('mystery."', 7), ('abandon', 7), ('writing,', 7), ('chap', 7), ('of,', 7), ('sort,', 7), ('mounted', 7), ('ronald', 7), ('letters.', 7), ('"\'well,\'', 7), ('ill', 7), ('collar', 7), ('lot', 7), ('quietly.', 7), ('hound.', 7), ('sketch', 7), ('raising', 7), ('repeat', 7), ('soothing', 7), ('gap', 7), ('steady', 7), ('chalk', 7), ('safety', 7), ('wandering', 7), ('drifted', 7), ('tongue', 7), ('page,', 7), ('tiny', 7), ('agitation', 7), ('drawer', 7), ('how?"', 7), ('mask', 7), ('confidence,', 7), ('disappointed', 7), ('tragedy,', 7), ('wishes', 7), ('"two', 7), ('track,', 7), ('urgent', 7), ('"certainly."', 7), ('twenty-three', 7), ('affair."', 7), ('accident', 7), ('smiling,', 7), ('occasion,', 7), ('notebook.', 7), ('waving', 7), ('cry,', 7), ('difference', 7), ("you?'", 7), ('investigation."', 7), ('specimen', 7), ('premier', 7), ('go?"', 7), ('splendid', 7), ('pressure', 7), ('far,', 7), ('wait,', 7), ('chance,', 7), ('border', 7), ('man?"', 7), ('strolled', 7), ('confined', 7), ('facing', 7), ('clear."', 7), ('involved', 7), ('why?"', 7), ('harding', 7), ('stair.', 7), ('date,', 7), ('avenue', 7), ('exclaimed.', 7), ('effort,', 7), ('vacancy', 7), ('struggle.', 7), ('baskervilles', 7), ('dried', 7), ('attacked', 7), ('months.', 7), ('fortune.', 7), ('creature,', 7), ('puckered', 7), ('heartily', 7), ('guilt', 7), ('asleep,', 7), ('board', 7), ('staunton,', 7), ('justify', 7), ('own,', 7), ('distance,', 7), ('consulting', 7), ('rucastle,', 7), ('"give', 7), ('huddled', 7), ('interest,"', 7), ('memory.', 7), ('brixton', 7), ('to-day.', 7), ('probability', 7), ('yesterday."', 7), ('faces.', 7), ('suspicious', 7), ('factor', 7), ('understanding', 7), ('dogged', 7), ('blood,', 7), ('hypothesis', 7), ('curling', 7), ('von', 7), ('infinitely', 7), ('waits', 7), ('departure', 7), ('right!', 7), ('true,"', 7), ('amazing', 7), ("hour's", 7), ('tenant', 7), ('shouted,', 7), ('trick', 7), ('stoner,', 7), ('crisis', 7), ('penetrating', 7), ('gun', 7), ('horace', 7), ('dear,', 7), ('through.', 7), ('yoxley', 7), ('mad,', 7), ('shared', 7), ('this."', 7), ('loudly', 7), ('finished.', 7), ('snow', 7), ('indeed.', 7), ('affairs.', 7), ('minutes."', 7), ('youth', 7), ('keeps', 7), ('inquest', 7), ('duke,', 7), ('finished,', 7), ('christmas', 7), ('expensive', 7), ('clair,', 7), ('foot.', 7), ('developments', 7), ('melas', 7), ('international', 7), ('"ah!"', 7), ('experience,', 7), ('stone,', 7), ('confess,', 7), ('questions.', 7), ('aristocratic', 7), ('"no;', 7), ('going,', 7), ('senses', 7), ('consisted', 7), ('barrel', 7), ('chain,', 7), ('"\'there', 7), ('watson?', 7), ('forms', 7), ('friends,', 7), ('family.', 7), ('colleague,', 7), ('muzzle', 7), ('yours.', 7), ('subtle', 7), ('train."', 7), ('uncle,', 7), ('african', 7), ('river', 7), ('rings', 7), ('countryside', 7), ('before."', 7), ('good-bye,', 7), ('musgrave,', 7), ('up."', 7), ('stables.', 7), ('yesterday.', 7), ('reconstruct', 7), ('precise', 7), ('lock,', 7), ('message.', 7), ('hereditary', 7), ('ringing', 7), ('"\'we', 7), ('glowed', 7), ('mall,', 7), ('tor', 7), ('power.', 7), ('denied', 7), ('fitzroy', 7), ('instance', 7), ('sergeant', 7), ('cap.', 7), ('disgrace', 7), ('return,', 7), ('english,', 7), ('shorter', 7), ('settling', 7), ('pitch', 7), ('throws', 7), ('red,', 7), ('evil,', 7), ('hastened', 7), ('missing.', 7), ('manuscript', 7), ('danger,', 7), ('petty', 7), ('bureau', 7), ('appreciate', 7), ('title', 7), ('tells', 7), ('finger-tips', 7), ('profession', 7), ('inquire', 7), ('leslie', 7), ('gate,', 7), ('kitchen,', 7), ('children', 7), ('shoulder,', 7), ('murder."', 7), ('rock,', 7), ('smith,', 7), ('hunting', 7), ('"dr.', 7), ('yet."', 7), ('fell.', 7), ('ejaculation', 7), ('sufficiently', 7), ('pink', 7), ('yourself."', 7), ('communicated', 7), ('alarm,', 7), ('game.', 7), ('anger,', 7), ('regular', 7), ('exchange', 7), ('side."', 7), ('boys', 7), ('minds', 7), ('known,', 7), ('congenial', 7), ('dream', 7), ('baffled', 7), ('curiosity,', 7), ('threshold', 7), ('autumn', 7), ('routine', 7), ('dazed', 7), ('nobody', 7), ('right,"', 7), ('aided', 7), ('boy.', 7), ('week.', 7), ('bridge', 7), ('steps,', 7), ('key,', 7), ('content', 7), ('shooting', 7), ('housekeeper', 7), ('however.', 7), ('"tell', 7), ('gentlemen,"', 7), ('gaunt', 7), ('winter', 7), ('trouble,', 7), ('downstairs.', 7), ("'we", 7), ('deeper', 7), ('duncan', 7), ('volume', 7), ('best.', 7), ("stapleton's", 7), ('europe.', 7), ('ball', 7), ('monograph', 7), ('produce', 7), ('daring', 7), ('peculiarly', 7), ('taste', 7), ('upset', 7), ('brick', 7), ('disguise', 7), ('conversation.', 7), ('secret,', 7), ('murmured', 7), ('attempts', 7), ('say."', 7), ('turner', 7), ('away."', 7), ('level', 7), ('note.', 7), ('warm', 7), ('melas,', 7), ('accident,', 7), ('argument', 7), ('emotion.', 7), ('reason.', 7), ('conclusion."', 7), ('corridor.', 7), ('compare', 7), ('glared', 7), ('trail', 7), ('paris', 7), ('clasped', 7), ('entering', 7), ('were.', 7), ('v.', 7), ('engage', 7), ('else,', 7), ('occurred,', 7), ('researches', 7), ('hunt', 7), ('statesman', 7), ('pycroft', 7), ('trap,', 7), ('duplicate', 7), ('brutal', 7), ('wind.', 7), ('revealed', 7), ('neighbourhood', 7), ('gate.', 7), ('minor', 7), ('hiding-place', 7), ('ceiling', 7), ('shield', 7), ('consideration', 7), ('way:', 7), ('messenger', 7), ('meeting', 7), ('respectable', 7), ('conclusion.', 7), ('trelawney', 7), ('halfway', 7), ("duke's", 7), ('restless', 7), ('grove', 7), ('lighted', 7), ('returns', 7), ('analysis', 7), ('market', 7), ('today', 7), ('ventilator', 7), ('manager.', 7), ('illness', 7), ('suggestion', 7), ('deserved', 7), ('appeared,', 7), ('remarks', 7), ('results.', 7), ('stated', 7), ('stone.', 7), ('snapped', 7), ('fine,', 7), ('"excellent,', 7), ('bill', 7), ('value,', 7), ('moriarty,', 7), ('confronted', 7), ('strength.', 7), ('clues', 7), ('afterwards.', 7), ('chronicle', 7), ('youth,', 7), ('lysander', 7), ('wine', 7), ('bachelor', 7), ('great,', 7), ('crimes', 7), ('frankland', 7), ('corresponding', 7), ('attempted', 7), ("me.'", 7), ('impatience.', 7), ('forgot', 7), ('undertake', 7), ('bannister', 7), ('fields', 7), ('crumpled', 7), ('wilder,', 7), ('listened.', 7), ('part,', 7), ('hid', 7), ('much."', 7), ('eye,', 7), ('presence,', 7), ('blank', 7), ('stark', 7), ('thumb,', 7), ('milverton,', 7), ('exhausted', 7), ('changes', 7), ('"sir', 7), ('miserable', 7), ('tinged', 7), ('concerning', 7), ('nocturnal', 7), ('disturb', 7), ('sick', 7), ('destroy', 6), ('drawing-room,', 6), ('like,', 6), ('crop', 6), ('gathering', 6), ('same,', 6), ('barrymore.', 6), ('precautions', 6), ('grounds.', 6), ('pycroft.', 6), ("fellow's", 6), ('hang', 6), ('lost.', 6), ('thursday', 6), ('amateur', 6), ('silas', 6), ('agitation.', 6), ('left-hand', 6), ('invisible', 6), ('period', 6), ('tapping', 6), ('mcfarlane,', 6), ('sigh', 6), ('i."', 6), ('respectable,', 6), ('problem,', 6), ('puzzle', 6), ('actual', 6), ('implored', 6), ('expose', 6), ('knees,', 6), ('nobleman', 6), ('thoughtfully.', 6), ('vessel', 6), ('settles', 6), ('london."', 6), ('interrupted', 6), ('clatter', 6), ('struggle', 6), ('distinguish', 6), ('trusted', 6), ('circumstances,', 6), ('in?"', 6), ('night?"', 6), ('villain,', 6), ('hill.', 6), ('something,', 6), ('trade', 6), ('idea.', 6), ('intently.', 6), ('political', 6), ('horse.', 6), ('stranger.', 6), ('assist', 6), ('clerks', 6), ('frankland,', 6), ('there!"', 6), ('assurance', 6), ('consulting-room', 6), ('view.', 6), ('"\'very', 6), ('bag,', 6), ('parallel', 6), ('her?', 6), ('asleep', 6), ('gloves', 6), ("me,'", 6), ('second,', 6), ('signed', 6), ('gentleman.', 6), ('freely', 6), ('projecting', 6), ('out?"', 6), ('prisoner,', 6), ('glass,', 6), ('woman."', 6), ('injuries', 6), ('eat', 6), ('"precisely.', 6), ('expedition,', 6), ('belongs', 6), ('made,', 6), ('softly', 6), ('inquiring', 6), ('intruder', 6), ('means.', 6), ('builder', 6), ('earnest', 6), ('neligan', 6), ('recommend', 6), ('hedge,', 6), ('fate,', 6), ('reaching', 6), ('accused', 6), ('mortal', 6), ('averse', 6), ('inference', 6), ('mistake,', 6), ('sallow', 6), ('team', 6), ('disappearing', 6), ('drank', 6), ('dashing', 6), ('suffered', 6), ('find.', 6), ('expected.', 6), ('bade', 6), ('reuben', 6), ('stories', 6), ('point."', 6), ('clue?"', 6), ('grows', 6), ('swing', 6), ('jump', 6), ('remarkable,', 6), ('off."', 6), ('vain.', 6), ('discreet', 6), ('magnifying', 6), ('whistle', 6), ('clean-shaven,', 6), ('aldershot', 6), ('forever.', 6), ('home."', 6), ('bushes', 6), ('anywhere', 6), ('thirty,', 6), ('issue', 6), ('injured', 6), ('account,', 6), ('dine', 6), ('occupied', 6), ('stranger,', 6), ('jack', 6), ('verge', 6), ('all?"', 6), ('cheerful', 6), ('security', 6), ('mycroft.', 6), ('inferences', 6), ('quarter-past', 6), ('drooping', 6), ('mire', 6), ('premises', 6), ('connection."', 6), ('behind.', 6), ('pounds.', 6), ('drink,', 6), ('.', 6), ('tutor', 6), ('pool,', 6), ('protruding', 6), ('vile', 6), ('stronger', 6), ('doubtless', 6), ('visiting', 6), ('size', 6), ("'is", 6), ('stuffed', 6), ('powers,', 6), ('advice."', 6), ('rubbing', 6), ('social', 6), ('somehow', 6), ('seconds', 6), ('bicycle,', 6), ('nodding', 6), ('gelder', 6), ('coats', 6), ('writhing', 6), ('faithfully,', 6), ('instinct', 6), ('knee', 6), ('adventure.', 6), ('scream,', 6), ('morning?"', 6), ('movements', 6), ('sure.', 6), ('effect.', 6), ('meets', 6), ('hardened', 6), ('news?"', 6), ('stamped', 6), ('complaint', 6), ('yard.', 6), ('prepare', 6), ('screaming', 6), ('gone."', 6), ('imagination', 6), ('stables,', 6), ('for."', 6), ('"would', 6), ('theory,', 6), ('co.,', 6), ('cheeks,', 6), ('affection', 6), ('laws', 6), ('detective.', 6), ('interview,', 6), ('smooth', 6), ('suspected', 6), ('glimmered', 6), ('criminal,', 6), ('trees,', 6), ('lestrade,"', 6), ('accent.', 6), ('poor,', 6), ('war', 6), ('suggested,', 6), ('permitted', 6), ('sister,', 6), ('teeth,', 6), ('frighten', 6), ('inspection', 6), ('deductions', 6), ('right."', 6), ('mixed', 6), ('mantelpiece,', 6), ('louder', 6), ('music', 6), ('fare', 6), ('warrant', 6), ('locked,', 6), ('jury', 6), ('advertisement,', 6), ('furnish', 6), ('uncertain', 6), ('way,"', 6), ('agitated', 6), ('mood', 6), ('panel', 6), ('"see', 6), ('outstretched', 6), ('once?"', 6), ('rumours', 6), ('wherever', 6), ('receiving', 6), ('closed,', 6), ('"\'quite', 6), ('brings', 6), ('steel', 6), ('joke,', 6), ('hopeless', 6), ('strangers', 6), ('scare', 6), ('brooding', 6), ('alice', 6), ('hearty', 6), ('nowhere', 6), ('illustrious', 6), ('practically', 6), ('singularly', 6), ('pouring', 6), ('authorities', 6), ('stare', 6), ('paces', 6), ('comrade', 6), ('amusement', 6), ('spot,', 6), ('telegram,', 6), ("trainer's", 6), ('prospect', 6), ('certain,', 6), ('intellectual', 6), ('surface.', 6), ('understand?"', 6), ('three-quarter', 6), ('furtive', 6), ('vital', 6), ('represent', 6), ('pretend', 6), ('educated', 6), ('drive,', 6), ('teach', 6), ('beddoes', 6), ("coroner's", 6), ('joke', 6), ('hunter,', 6), ('napoleon,', 6), ('surrey', 6), ('lately.', 6), ('pages', 6), ('mysteries', 6), ('merryweather', 6), ('pound', 6), ('yourselves', 6), ('downstairs,', 6), ('solving', 6), ('beeches', 6), ('comfortably', 6), ('likely.', 6), ('aloud', 6), ('lain', 6), ('points.', 6), ('dress.', 6), ('speak,', 6), ('oldest', 6), ('judgment', 6), ('staff', 6), ('tightly', 6), ('source', 6), ('wrapped', 6), ('once."', 6), ('kennington', 6), ('shoes', 6), ('desk,', 6), ('constant', 6), ('soldiers', 6), ('indicate', 6), ('landlady', 6), ('acute', 6), ('tired', 6), ('furious', 6), ('on."', 6), ('chosen', 6), ('consumed', 6), ('late,', 6), ('bowed.', 6), ('acton', 6), ('help.', 6), ('about,', 6), ('listening', 6), ('earl', 6), ('cigars', 6), ('suspicion.', 6), ('accompany', 6), ('sole', 6), ('task.', 6), ('interest."', 6), ("it,'", 6), ('carpet.', 6), ('surprising', 6), ('stepping', 6), ('talk,', 6), ('hoarse', 6), ('doran,', 6), ('handling', 6), ('poison', 6), ('us?"', 6), ('persuade', 6), ('like."', 6), ('blind.', 6), ('dinner.', 6), ('considering', 6), ('deceive', 6), ('state,', 6), ('question."', 6), ('inn.', 6), ('up,"', 6), ('cruel', 6), ("so.'", 6), ('conjecture', 6), ('pursuit', 6), ('"\'how', 6), ('university', 6), ('fancy,', 6), ('implore', 6), ('tell."', 6), ('patches', 6), ('lock.', 6), ('company,', 6), ('descend', 6), ("know.'", 6), ('gray,', 6), ('indebted', 6), ('so!', 6), ('indignation', 6), ('whispered,', 6), ('commend', 6), ('interpreter', 6), ('safe.', 6), ('inquest,', 6), ('clothes,', 6), ('estate', 6), ('puts', 6), ('bark', 6), ('house,"', 6), ('bolt', 6), ('stars', 6), ('sofa,', 6), ('park,', 6), ('blunt', 6), ('harpoon', 6), ('hook', 6), ('saxe-coburg', 6), ('wanted.', 6), ('"most', 6), ('north,', 6), ('widespread', 6), ('violence.', 6), ('sternly.', 6), ('confirm', 6), ('"\'but', 6), ('stroke', 6), ('"you\'ve', 6), ('pace', 6), ('bottom.', 6), ('wife."', 6), ('student', 6), ('collar,', 6), ("'for", 6), ('neck.', 6), ('throat.', 6), ('cheery', 6), ('fireplace', 6), ('desk', 6), ('district', 6), ('departed', 6), ('searched', 6), ('before,"', 6), ('conducted', 6), ('"really,', 6), ('"watson,', 6), ('confine', 6), ('secretary,', 6), ('sharing', 6), ('maiden', 6), ('suits', 6), ('draught', 6), ('patient,', 6), ('investigate', 6), ('shot,', 6), ('confident', 6), ('priory', 6), ('linen', 6), ('inward', 6), ('front,', 6), ("roylott's", 6), ('dug', 6), ('pile', 6), ('bell-rope', 6), ('ventured', 6), ('ruddy', 6), ('hurry,', 6), ('opened.', 6), ('searching', 6), ('burglary', 6), ('george,', 6), ('delicacy', 6), ('down."', 6), ('tricks', 6), ('answering', 6), ('suburban', 6), ('weak,', 6), ('ignorant', 6), ('children,', 6), ('ugly', 6), ('lifted', 6), ('earlier', 6), ('holder.', 6), ('experienced', 6), ('anxiety.', 6), ('latest', 6), ('infinite', 6), ('alone."', 6), ('along,', 6), ('confederate', 6), ('recalled', 6), ('roughly', 6), ('soul,', 6), ('born', 6), ('preposterous', 6), ('officers', 6), ('indeed!', 6), ('twitching', 6), ('inquiries."', 6), ('kissed', 6), ('triumphant', 6), ('glasses.', 6), ('fleet', 6), ('column', 6), ('disappeared.', 6), ('butler,', 6), ('energy.', 6), ('shoes,', 6), ('lashed', 6), ('frock-coat,', 6), ('what?"', 6), ('degrees', 6), ('seek', 6), ('beauty.', 6), ('tangle', 6), ('balance', 6), ('nervous,', 6), ('desk.', 6), ('bridegroom', 6), ('instructive', 6), ('behind,', 6), ('experience.', 6), ('others.', 6), ('imploring', 6), ('duchess', 6), ('stretching', 6), ('late."', 6), ('seen."', 6), ('lads', 6), ('faith', 6), ('stable-boy', 6), ('"shall', 6), ('arm,', 6), ('smashed', 6), ('hence', 6), ('empty,', 6), ('rule,', 6), ('coincidence', 6), ('later.', 6), ('exceptional', 6), ('closer', 6), ('seems,', 6), ('same.', 6), ('joy.', 6), ('bosom', 6), ('itself,', 6), ('moor?"', 6), ('vincent', 6), ('dog-cart,', 6), ('sees', 6), ('fiend', 6), ('impressions', 6), ('connect', 6), ('pipe.', 6), ('frankly', 6), ('incoherent', 6), ('gravely.', 6), ('clutching', 6), ('peterson,', 6), ('term', 6), ('stairs.', 6), ('uneasy', 6), ('passes', 6), ('diary', 6), ('speckled', 6), ('"\'not', 6), ('weakness', 6), ('scent,', 6), ('manor', 6), ('mutual', 6), ('flame', 6), ('above.', 6), ('equal', 6), ('thickly', 6), ('bowed,', 6), ('preventing', 6), ('pa', 6), ('none.', 6), ('sir!"', 6), ('committed,', 6), ('locked.', 6), ('done?"', 6), ('father.', 6), ('coast', 6), ('strict', 6), ('name."', 6), ('papers."', 6), ('wax', 6), ('opinion.', 6), ('slit', 6), ('string', 6), ('beating', 6), ('infernal', 6), ('darting', 6), ('bureau.', 6), ('winchester', 6), ('awaits', 6), ('fringe', 6), ('decoyed', 6), ('old.', 6), ('dirty', 6), ('wiser', 6), ('afternoon.', 6), ('hardware', 6), ('four-wheeler', 6), ('hospital', 6), ('dinner,', 6), ('understand,"', 6), ('augustus', 6), ('discretion', 6), ('ten.', 6), ('employment', 6), ('composed', 6), ('mistaken,', 6), ('weeks,', 6), ('groaned', 6), ('threads', 6), ('murder,', 6), ('justified', 6), ('charred', 6), ('habits.', 6), ('heartily.', 6), ('centre.', 6), ('certain.', 6), ('unlike', 6), ('discoloured', 6), ('genius', 6), ('hut.', 6), ('recollection', 6), ('paying', 6), ('sheets', 6), ('two.', 6), ('group', 6), ('no;', 6), ('suffer', 6), ('overlooked', 6), ('mean,', 6), ('victoria', 6), ('gradually', 6), ('ruffian', 6), ('means,', 6), ('liked', 6), ('coming,', 6), ('groan', 6), ('estate.', 6), ('definitely', 6), ('convince', 6), ('someone,', 6), ('fat', 6), ('started.', 6), ('nothing?"', 6), ('important.', 6), ('fortune,', 6), ('landlord', 6), ('correspond', 6), ('america,', 6), ('statement,', 6), ('temporary', 6), ('wasted', 6), ('yesterday?"', 6), ('merryweather,', 6), ('yell', 6), ('things.', 6), ('drag', 6), ('clump', 6), ('coarse', 6), ('inexorable', 6), ('can."', 6), ('patient.', 6), ('die', 6), ('servant,', 6), ('flashing', 6), ('sir!', 6), ('wilson', 6), ('of."', 6), ('servants,', 6), ('must,', 6), ('disappointment.', 6), ('elsie', 6), ('bristling', 6), ('curtains', 6), ('revolver,', 6), ('salary', 6), ('partner', 6), ('boiling', 6), ('it!', 6), ('that!"', 6), ('provided', 6), ('exit', 6), ('smoke.', 6), ('sky,', 6), ('fragment', 6), ('tiptoe', 6), ('below.', 6), ('bears', 6), ('satisfactory', 5), ('growing', 5), ('aloysius', 5), ('yonder', 5), ('be."', 5), ('sun.', 5), ('forehead.', 5), ('carries', 5), ('startling', 5), ('personality', 5), ('pause', 5), ('earned', 5), ('advertisement.', 5), ('not,"', 5), ('trusty', 5), ('correct.', 5), ('"wait', 5), ('squire', 5), ('sorry,', 5), ('chose', 5), ('sort.', 5), ('example?"', 5), ('days."', 5), ('places.', 5), ('senseless', 5), ('advantages', 5), ('4', 5), ('bed?"', 5), ('anyone.', 5), ('flashed', 5), ('trampled', 5), ('probable,', 5), ('details.', 5), ('dwell', 5), ('uses', 5), ('inscrutable', 5), ('distorted', 5), ('card,', 5), ('associate', 5), ('family."', 5), ('spray', 5), ('twice,', 5), ('elapsed', 5), ('wake', 5), ('remained.', 5), ('disposition', 5), ('sodden', 5), ('explained,', 5), ('engagement', 5), ("baronet's", 5), ('bounded', 5), ('attain', 5), ('clang', 5), ('clock.', 5), ('"holmes,"', 5), ('errand', 5), ('letters?"', 5), ('flight,', 5), ('modest', 5), ('brushed', 5), ('come,"', 5), ('training', 5), ('household.', 5), ('"exactly,', 5), ('within,', 5), ('limited', 5), ('cane', 5), ('class', 5), ('deceased', 5), ('nurse,', 5), ('ragged', 5), ('mccarthy.', 5), ('accompanied', 5), ('swear,', 5), ('wretch', 5), ('rest.', 5), ('eighteen', 5), ('wessex', 5), ('anger.', 5), ('subject,', 5), ('beast.', 5), ('shed', 5), ('sky.', 5), ('feature', 5), ('yes.', 5), ('dismay', 5), ('telegram.', 5), ('seven,', 5), ('hailed', 5), ('vast', 5), ('"get', 5), ('ahead', 5), ('oaken', 5), ('speaks', 5), ('rueful', 5), ('shipping', 5), ('notorious', 5), ('unconscious', 5), ('removed.', 5), ('grief,', 5), ('amazement,', 5), ('follows:', 5), ("james's", 5), ('bachelor,', 5), ('talking.', 5), ('intensity', 5), ('tear', 5), ('pen,', 5), ('"nothing."', 5), ('three,', 5), ('government', 5), ('observing', 5), ('tiger', 5), ('trim', 5), ('whistle.', 5), ('deprived', 5), ('removed,', 5), ('theory.', 5), ('slope', 5), ('hush', 5), ('place?', 5), ('idea,', 5), ("morning.'", 5), ('peered', 5), ('reasoning,', 5), ('garden,', 5), ('withdrew', 5), ('walks', 5), ('immensely', 5), ('concern', 5), ('promising', 5), ('curried', 5), ('village,', 5), ('lounging', 5), ("straker's", 5), ('otherwise,', 5), ('rat', 5), ('door,"', 5), ('rising.', 5), ('masterful', 5), ('conscience', 5), ('jones', 5), ('to-morrow.', 5), ('chambers', 5), ('mapleton.', 5), ('district.', 5), ('mistaken.', 5), ('pursuing', 5), ('noiselessly', 5), ('bradstreet,', 5), ('owner.', 5), ('strip', 5), ('veil,', 5), ('annoyance.', 5), ('scared', 5), ('reaction', 5), ('hedges', 5), ('century', 5), ('odious', 5), ('causing', 5), ('complicated', 5), ('come!', 5), ('fluffy', 5), ('_gloria', 5), ('contrary,"', 5), ('cigar,', 5), ('data', 5), ('impossible,', 5), ('chasing', 5), ('photograph?"', 5), ('hat.', 5), ('cloak', 5), ('louder,', 5), ('love,', 5), ('lake', 5), ('over."', 5), ('longer.', 5), ('commanded', 5), ('early,', 5), ('e.', 5), ('reckless', 5), ('mme.', 5), ('cartwright', 5), ('upright', 5), ('munro', 5), ('difficulty.', 5), ('franco-midland', 5), ('frenzy', 5), ('retiring', 5), ('officials', 5), ('mycroft,', 5), ('baker,', 5), ('cupboard,', 5), ('win', 5), ('"\'a', 5), ('bullet,', 5), ('book.', 5), ('"still', 5), ('bearded', 5), ('agitation,', 5), ('hired', 5), ('holdhurst,', 5), ('eccentric', 5), ('suffering', 5), ('rummaged', 5), ('document.', 5), ('hotel."', 5), ('enemies', 5), ('cannot,', 5), ('violence,', 5), ('eh?"', 5), ('bedrooms', 5), ('dripping', 5), ('slowed', 5), ('action,', 5), ('"fire!"', 5), ('shoot', 5), ('shouted', 5), ('throat,', 5), ('chance.', 5), ('speed', 5), ("hadn't", 5), ('plate.', 5), ('gasped', 5), ('fact."', 5), ('"\'for', 5), ('art,', 5), ('does.', 5), ('pencil,', 5), ('prisoner.', 5), ('ask,', 5), ('brighter', 5), ('richest', 5), ('crimson', 5), ('prize', 5), ('says,', 5), ('cook,', 5), ("sir,'", 5), ('drug,', 5), ('sign.', 5), ('richer', 5), ('footprints', 5), ('known.', 5), ('pool.', 5), ('avoided', 5), ('roar', 5), ('establishment.', 5), ('farmers', 5), ('bow', 5), ('woke', 5), ('true."', 5), ('wagonette', 5), ('mass', 5), ('grate.', 5), ('devised', 5), ('secretary.', 5), ('now?', 5), ('happens', 5), ('burnwell', 5), ('stabbed', 5), ('doorway', 5), ('shout', 5), ('creaking', 5), ('ink', 5), ('happiness,', 5), ('deposit', 5), ('wreck', 5), ('travel', 5), ('comparatively', 5), ('living.', 5), ('existence.', 5), ('laugh,', 5), ('certainly,', 5), ('cabin,', 5), ('clumps', 5), ('hiding-place,', 5), ('fields.', 5), ('can,', 5), ('clouds.', 5), ('mire.', 5), ('to-day."', 5), ('independent', 5), ('sleeps', 5), ('storm', 5), ('ceremony,', 5), ('reach,', 5), ('coachman,', 5), ('odds', 5), ('tinge', 5), ('individual', 5), ('invariably', 5), ('queerest', 5), ('strangest', 5), ('elm', 5), ('impatient', 5), ('woodley,', 5), ('cunningham,', 5), ('step,', 5), ('curve,', 5), ('blessington,', 5), ('"never."', 5), ('tampered', 5), ('them?', 5), ('order,', 5), ('waiting,', 5), ('morass', 5), ('reader', 5), ('south,', 5), ('"hum!"', 5), ('run.', 5), ('oldacre,', 5), ('harm.', 5), ('laughing,', 5), ('acquaintance,', 5), ('communication', 5), ('selden,', 5), ('tones', 5), ('shriek', 5), ('ones,', 5), ('next.', 5), ('admirably', 5), ('web', 5), ('plate', 5), ('fluttered', 5), ('whitewashed', 5), ('scored', 5), ('"well', 5), ('tuft', 5), ('charged', 5), ('"every', 5), ('williamson', 5), ('ounce', 5), ('sleeper,', 5), ('sleeve,', 5), ('sleeve', 5), ('scene,', 5), ('quarter,', 5), ('brisk', 5), ('intrusion', 5), ('college,', 5), ('"wonderful!"', 5), ('him!', 5), ('morose', 5), ('own."', 5), ('angel', 5), ('name,"', 5), ('thorpe', 5), ('angel."', 5), ('tool', 5), ('thanks', 5), ('impress', 5), ('ceiling.', 5), ('venomous', 5), ('wits', 5), ('squatted', 5), ('ha,', 5), ('exposure', 5), ('engineer,', 5), ('leave,', 5), ('dread', 5), ('states', 5), ('india,', 5), ('barrymore?"', 5), ('inquiries,', 5), ('deceived', 5), ('limited,', 5), ('way?"', 5), ('whitehall', 5), ('waited,', 5), ('telegrams', 5), ('holder,', 5), ('dated', 5), ('carriage.', 5), ('horner,', 5), ('"\'only', 5), ('argue', 5), ('situation,', 5), ('stolen', 5), ('have.', 5), ('pierced', 5), ('faithful', 5), ('crew', 5), ('lafter', 5), ('amazed', 5), ('neck,', 5), ('rigidity', 5), ('fallen,', 5), ('crushing', 5), ('falls', 5), ('consists', 5), ('persons', 5), ('paths', 5), ('rooms."', 5), ('june', 5), ('concentrated', 5), ('drink', 5), ('dressing-room', 5), ('awaited', 5), ('scandal.', 5), ('tobacco.', 5), ('snake', 5), ('darkness,', 5), ('imagine.', 5), ('hilda', 5), ('unfortunately', 5), ('curtain,', 5), ("fuller's-earth", 5), ('students', 5), ('place."', 5), ('test-tube', 5), ('jacket.', 5), ('uneasiness', 5), ('cheetah', 5), ('scrambled', 5), ('soil', 5), ('slight,', 5), ('thunder,', 5), ('cutting', 5), ('seat.', 5), ('officer', 5), ('intelligent', 5), ('butt', 5), ('discovered.', 5), ('height', 5), ('turned,', 5), ('stooping', 5), ('reply,', 5), ('austere', 5), ('moment,"', 5), ('france', 5), ('keener', 5), ("we've", 5), ('tracey,', 5), ('insist', 5), ('upstairs,', 5), ('difficult,', 5), ('"\'no', 5), ('war,', 5), ('homeward', 5), ('difficulties.', 5), ('eyford', 5), ('know,"', 5), ('whom?"', 5), ('dangling', 5), ('delight', 5), ('pieces', 5), ('theories,', 5), ('incapable', 5), ('you;', 5), ('losing', 5), ('athletic', 5), ('occupants', 5), ('leaf', 5), ('southern', 5), ('porch', 5), ('himself."', 5), ('gas', 5), ('pathway', 5), ('mighty', 5), ('"unless', 5), ('glass.', 5), ('breath,', 5), ('am.', 5), ('dust,', 5), ('blackest', 5), ('breach', 5), ('hiding-place.', 5), ('will."', 5), ('attend', 5), ('holder', 5), ('h.', 5), ('crouched', 5), ('advertisement."', 5), ('commit', 5), ('addressing', 5), ('rum', 5), ('minutely', 5), ("staunton's", 5), ('then!', 5), ('lunch,', 5), ('mapleton', 5), ('speech', 5), ('event.', 5), ('service.', 5), ('landlord,', 5), ('dining-room,', 5), ('account.', 5), ('burn', 5), ('climbed', 5), ('"still,', 5), ('j.', 5), ('mischievous', 5), ('intent', 5), ('"what!"', 5), ('forest', 5), ('rustle', 5), ('fills', 5), ('expense', 5), ('vanish', 5), ('lid', 5), ('help."', 5), ('cravat,', 5), ('hugh', 5), ('replace', 5), ('consequences', 5), ('better,"', 5), ('childish', 5), ('verdict', 5), ('pockets,', 5), ('companions,', 5), ('report.', 5), ('salesman', 5), ('times.', 5), ('martin', 5), ('couch', 5), ('dressing-gown.', 5), ('portrait', 5), ('knocking', 5), ('profound', 5), ('campaign', 5), ('eyebrows.', 5), ('start,', 5), ('lee,', 5), ('trail.', 5), ('begins', 5), ('ran,', 5), ('plans.', 5), ('traces.', 5), ('nervously', 5), ('wanting', 5), ('illness,', 5), ('deal,', 5), ('island', 5), ('suit,', 5), ('acquired', 5), ('where?"', 5), ('heap', 5), ('subdued', 5), ('"nor', 5), ('"\'tell', 5), ("moment's", 5), ('chase', 5), ('detailed', 5), ('average', 5), ('glare', 5), ('hangs', 5), ('avenue,', 5), ('herself,', 5), ('cubitt,', 5), ('turner.', 5), ('hated', 5), ('tugging', 5), ('vindictive', 5), ('clients', 5), ('march', 5), ('patients', 5), ('below', 5), ('stroll', 5), ('society,', 5), ('envelope.', 5), ('tip', 5), ('mathematical', 5), ('rely', 5), ('sitting-room.', 5), ('pocket."', 5), ('finest', 5), ('troubling', 5), ('told,', 5), ('difficulties', 5), ('swiss', 5), ('france.', 5), ("sir.'", 5), ('moonlight', 5), ('swollen', 5), ('iron,', 5), ('a,', 5), ('sir?', 5), ('grand', 5), ('impatiently.', 5), ('submit', 5), ('"\'have', 5), ('reply.', 5), ('armstrong,', 5), ("boy's", 5), ('hayes,', 5), ('weapon,', 5), ('civil', 5), ('wire.', 5), ('dad', 5), ('found.', 5), ('kind,', 5), ('ash', 5), ('couch,', 5), ('paragraph', 5), ('keen,', 5), ('slopes', 5), ('cat', 5), ('edges', 5), ('fitting', 5), ('sheep', 5), ('parents', 5), ('ago."', 5), ('centre,', 5), ('chin,', 5), ('fiery', 5), ('heir,', 5), ('warders', 5), ('struggling', 5), ('publication', 5), ('side-whiskers', 5), ('windibank,', 5), ('"hardly', 5), ('roll', 5), ('concentration', 5), ('struggled', 5), ('me;', 5), ('invent', 5), ('limits', 5), ('firmly', 5), ('reach.', 5), ('was."', 5), ('news.', 5), ('breakfast.', 5), ('arrived.', 5), ('statement."', 5), ("'a", 5), ('rouse', 5), ('tail', 5), ('lawyer', 5), ('bold', 5), ('neighbours.', 5), ('merry', 5), ('instrument', 5), ('this,"', 5), ('mount-james,', 5), ('heart."', 5), ('count', 5), ('lens.', 5), ('happy,', 5), ('services.', 5), ('discovered,', 5), ('friend."', 5), ('explained.', 5), ('eagerness', 5), ('atmosphere', 5), ('hilda.', 5), ('reichenbach', 5), ('tomorrow', 5), ('april', 5), ('identity.', 5), ('beneath.', 5), ('plain-clothes', 5), ('bicycle.', 5), ('ill,', 5), ('father."', 5), ('greeting', 5), ('"good-morning,', 5), ('progress', 5), ('unicorn,', 5), ('matches', 5), ('guard,', 5), ('one?"', 5), ('straw', 5), ('to-night."', 5), ('abrupt', 5), ('safety.', 5), ('knife.', 5), ('lover', 5), ('"since', 5), ('letter?"', 5), ('bustling', 5), ('business,"', 5), ('borders', 5), ('"or', 5), ('"\'this', 5), ('city,', 5), ('though,', 5), ('sleep,', 5), ('bundles', 5), ('favourite', 5), ('sealed', 5), ('science', 5), ('venerable', 5), ('brothers', 5), ('bad,', 5), ('enjoy', 5), ('alive,', 5), ('adler', 5), ('cunningham.', 5), ('purposes,', 5), ('pounds."', 5), ('"we\'ll', 5), ('permission,', 5), ('energy,', 5), ('obscure', 5), ('coat.', 5), ('crushed', 5), ('else."', 5), ('said:', 5), ('identified', 5), ('frightful', 5), ('objects', 5), ('press,', 5), ('corners', 5), ('sought', 5), ('forming', 5), ('ralph', 5), ('adler,', 5), ('occurrence', 5), ('towers', 5), ('india', 5), ('japanese', 5), ('clattered', 5), ('arrested.', 5), ('madam,"', 5), ('scent.', 5), ('take.', 5), ('murmur', 5), ('clergyman', 5), ('kneeling', 5), ('gloom.', 5), ('employer,', 5), ('forbidding', 5), ('complete.', 5), ('believe."', 5), ('overwhelmed', 5), ('go."', 5), ('month.', 5), ('lived.', 5), ("barclay's", 5), ('am."', 5), ('clearer', 5), ('fashion."', 5), ('quietly,', 5), ('holmes?', 5), ('heavens!', 5), ('"that,', 5), ("again.'", 5), ('willingly', 5), ('blowing', 5), ('senior', 5), ('taken,', 5), ('parish', 5), ('lawn.', 5), ('speculation.', 5), ('possessed', 5), ('collar.', 5), ('race', 5), ('neighbouring', 5), ('purple', 5), ('gems', 5), ('whisper', 5), ('norfolk,', 5), ('contains', 5), ('ways.', 5), ('horsham,', 5), ('watson!"', 5), ('"colonel', 5), ('relief', 5), ('roof.', 5), ('accepted', 5), ('"precisely."', 5), ('crisp', 5), ('regretted', 5), ('seize', 5), ('wound,', 5), ('blade', 5), ('courtesy', 5), ('midst', 5), ('went,', 5), ('occasionally,', 5), ('methods.', 5), ('screw', 5), ('restore', 5), ('enemies,', 5), ('happened.', 5), ('sake.', 5), ('where,', 5), ('avenue.', 5), ('glances', 5), ('devonshire.', 5), ('delay', 5), ('explanations,', 5), ('absurdly', 5), ('"someone', 5), ('"precisely', 5), ('means."', 5), ('ideas', 5), ('hatherley,', 5), ('recognised', 5), ('pity,', 5), ('poker', 5), ("'why,", 5), ('lucas,', 5), ('man;', 5), ('ryder', 5), ('curious,', 5), ('points,', 5), ('future,', 5), ('policemen', 5), ('carefully.', 5), ('butler.', 5), ('jealousy', 5), ('members', 5), ('diogenes', 5), ('fingers.', 5), ('inherit', 5), ('grown', 5), ('mind?"', 5), ('strode', 5), ('promise,', 5), ('"halloa!', 5), ('causes', 5), ('judgment,', 5), ('convulsed', 5), ('letter."', 5), ('mother.', 5), ('relief.', 5), ('posted', 5), ('kill', 5), ('completely.', 5), ('arrested,', 5), ('moustache,', 5), ('insisted', 5), ('bohemia', 5), ('proceed."', 5), ('norwood.', 5), ("child's", 5), ('jumped', 5), ('ledge', 5), ('shots', 5), ('confused', 5), ('"before', 5), ('milk', 5), ('first-class', 5), ('huxtable', 5), ('leadenhall', 5), ('bewilderment.', 4), ('aloud.', 4), ('cuts', 4), ('mastered', 4), ('rose.', 4), ("us?'", 4), ('earnestness', 4), ('sporting', 4), ('nerves,', 4), ('stuck', 4), ('dream.', 4), ('fragments', 4), ('reduced', 4), ('late!', 4), ('whisky', 4), ('cases.', 4), ('always,', 4), ('drugget', 4), ('bristled', 4), ('sensation', 4), ('"undoubtedly.', 4), ('hearts', 4), ('waiting.', 4), ('why?', 4), ('iii.', 4), ('beeches,', 4), ('amiss', 4), ('lip,', 4), ('mccarthy,', 4), ("grace's", 4), ('movement.', 4), ('drawing-room', 4), ('overpowering', 4), ('fascinating', 4), ('shrill', 4), ('everybody', 4), ('slowly,', 4), ('wondered', 4), ('notes,', 4), ('drawers', 4), ('reveal', 4), ('beryl', 4), ('proved,', 4), ('jovial', 4), ('women,', 4), ('incisive', 4), ('jacket', 4), ('lack', 4), ('man!"', 4), ('moustache', 4), ('wing.', 4), ('sympathetic', 4), ('capture', 4), ('tale.', 4), ("good.'", 4), ('corners,', 4), ('enthusiastic', 4), ('photograph,', 4), ('loud,', 4), ('murdering', 4), ('impression,', 4), ('instant."', 4), ('shiny', 4), ('disgraceful', 4), ('creak', 4), ("'lone", 4), ('pursuit.', 4), ('john,', 4), ('systematic', 4), ('inmates', 4), ('shoe', 4), ('fowler', 4), ('fault.', 4), ('bitterness.', 4), ('robbery,', 4), ('quivered', 4), ('followed,', 4), ('wrist,', 4), ('bridge,', 4), ('bradstreet', 4), ('litter', 4), ('judge,', 4), ('selfish', 4), ('obvious,', 4), ('cocking', 4), ('dignity', 4), ('slightest', 4), ('neighbourhood.', 4), ('unlikely."', 4), ('succeeded,', 4), ('akin', 4), ('prehistoric', 4), ('dock.', 4), ('decision.', 4), ('flaw', 4), ('aged', 4), ('maids,', 4), ('waterloo,', 4), ('plump', 4), ('adapted', 4), ('crimes,', 4), ('address?"', 4), ('cursed', 4), ('anything,', 4), ('dazed,', 4), ('dainty', 4), ('confederate,', 4), ('thirty.', 4), ('peasants', 4), ('cellar,', 4), ('scandal,', 4), ('platform', 4), ('failing', 4), ('mantle', 4), ('daylight', 4), ('wasted.', 4), ('prey.', 4), ('thieves', 4), ('shadowy', 4), ('german,', 4), ("them.'", 4), ('betray', 4), ('abode', 4), ('blood-stains', 4), ('look,', 4), ('oblige', 4), ('trevor.', 4), ('resolution', 4), ('jewel', 4), ('other."', 4), ('birmingham', 4), ('safer', 4), ('sister.', 4), ('midday', 4), ('surgery', 4), ('coming."', 4), ('food,', 4), ('relics', 4), ('handcuffs', 4), ('preceded', 4), ('squeeze', 4), ('pompey', 4), ('charles.', 4), ('wife?"', 4), ('speech.', 4), ('suggestive.', 4), ('hateful', 4), ('depths', 4), ('disguised', 4), ('motionless', 4), ('pinner,', 4), ('forefinger', 4), ('rascal.', 4), ('catastrophe', 4), ('"\'mr.', 4), ('management', 4), ("me?'", 4), ('district,', 4), ('alpine-stock', 4), ('station-master', 4), ('possession.', 4), ('gracious,', 4), ('margin', 4), ('discretion,', 4), ('declares', 4), ('dealt', 4), ('afforded', 4), ('instincts', 4), ('possession,', 4), ('weeks.', 4), ('stumbled', 4), ('self-contained', 4), ('nine,', 4), ('only.', 4), ('breast.', 4), ('morning,"', 4), ('folded,', 4), ('agent,', 4), ('battered', 4), ('vigorously', 4), ('ii.', 4), ('at.', 4), ('depression', 4), ('"and,', 4), ('departed.', 4), ('jack,', 4), ('circumstances.', 4), ('blanched', 4), ('muddy', 4), ('pince-nez', 4), ('decided', 4), ('top-hat', 4), ('turf', 4), ('twenty-five', 4), ('rich,', 4), ("wits'", 4), ('artist', 4), ("she's", 4), ('strengthen', 4), ('impassive', 4), ('hold.', 4), ('rifled', 4), ('table?"', 4), ('visits', 4), ("blessington's", 4), ('usual.', 4), ('bulldog', 4), ('slow', 4), ('recommended', 4), ('subsequent', 4), ('belated', 4), ('attacks', 4), ('recess', 4), ('directions', 4), ('lives.', 4), ('purchased', 4), ('facts."', 4), ('introduction', 4), ('directly', 4), ('vengeance', 4), ('boots.', 4), ('ballarat', 4), ('persian', 4), ('struck,', 4), ('worn,', 4), ('slaney,', 4), ('ten."', 4), ('apiece.', 4), ('debt', 4), ('elsewhere."', 4), ('started,', 4), ('masked', 4), ('favorite.', 4), ('hesitation', 4), ('appear,', 4), ('alarm.', 4), ('first?"', 4), ('trevor,', 4), ('whistled.', 4), ('forever."', 4), ('all,"', 4), ('found."', 4), ('beats', 4), ('mostly', 4), ('van', 4), ('in!"', 4), ('building.', 4), ('scandal."', 4), ('interfere', 4), ('given.', 4), ('crawling', 4), ('doings', 4), ('lantern.', 4), ('ones.', 4), ('wrists.', 4), ('calm', 4), ('death?"', 4), ('copied', 4), ('person."', 4), ('arms.', 4), ('dusty', 4), ('snarl', 4), ('compunction', 4), ('schemes', 4), ('couple.', 4), ('agent.', 4), ('allude', 4), ('alternative,', 4), ('speedily', 4), ('june,', 4), ('yours."', 4), ('serpentine', 4), ('dipped', 4), ('countryside,', 4), ('divorce', 4), ('enclosure', 4), ('landscape', 4), ('spark', 4), ('out,"', 4), ('service,', 4), ('explanations', 4), ('suffice', 4), ('definite,', 4), ('commands', 4), ('intimately', 4), ('friendship', 4), ('secrets', 4), ('hector', 4), ('stern,', 4), ('yard."', 4), ('loved.', 4), ('delay.', 4), ("commissionnaire's", 4), ('crazed', 4), ('heel', 4), ('engaged."', 4), ('shop,', 4), ('withheld', 4), ('brain-fever,', 4), ('remainder', 4), ('grass.', 4), ('alley,', 4), ('lay,', 4), ('filling', 4), ('i?', 4), ('powers.', 4), ('neighbor,', 4), ('regiment', 4), ('cigarette,', 4), ('favorite', 4), ('seedy', 4), ('cabin.', 4), ('treasure', 4), ('photograph."', 4), ('community', 4), ('done,"', 4), ('determine', 4), ('rodger', 4), ('appreciated', 4), ('studying', 4), ('stern', 4), ("huxtable's", 4), ('these:', 4), ('curiosity.', 4), ('rachel', 4), ('tongue.', 4), ('feeble', 4), ('interference', 4), ('haste', 4), ('hope,"', 4), ('artificial', 4), ('conan', 4), ('doctors', 4), ('meant,', 4), ('west,', 4), ('doyle', 4), ('assizes.', 4), ('sea,', 4), ('stealthily', 4), ('holdhurst', 4), ('health,', 4), ('obtaining', 4), ('gates', 4), ('appointed', 4), ('third.', 4), ('arthur,', 4), ('"\'tut,', 4), ('moor,"', 4), ('happen', 4), ('sport', 4), ('"exactly,"', 4), ('coronet,', 4), ('fled.', 4), ('rage,', 4), ('insure', 4), ('alarmed', 4), ('ink,', 4), ('indirect', 4), ("'when", 4), ('sequel', 4), ('alighted', 4), ('imagine."', 4), ('outcome', 4), ('disregard', 4), ('clumsy', 4), ('unusual.', 4), ('lay.', 4), ('apparently,', 4), ('king,', 4), ('expenses', 4), ('details,', 4), ('longer,', 4), ('monday.', 4), ('ride', 4), ('lantern,', 4), ('villages', 4), ('jove!', 4), ('dreary', 4), ('nicely,', 4), ('walking,', 4), ('rain,', 4), ('hurriedly', 4), ('porter,', 4), ('valet,', 4), ("winter's", 4), ('silver,', 4), ('enormously', 4), ('grasping', 4), ('turn,', 4), ('divided', 4), ('crawl', 4), ('all?', 4), ('saying,', 4), ('added,', 4), ('prevented', 4), ('insult', 4), ('data.', 4), ('description,', 4), ('narrative,', 4), ('power,', 4), ('bannister,', 4), ('farther,', 4), ('violin,', 4), ('scuffle', 4), ('ability,', 4), ('mingled', 4), ('"whatever', 4), ('cruelty', 4), ('cried;', 4), ('velvet', 4), ('powder', 4), ('three.', 4), ('relieved', 4), ('patched', 4), ('"five', 4), ('harold', 4), ('contain', 4), ('neighbour', 4), ('nancy', 4), ('reward.', 4), ('billet', 4), ('dining-room.', 4), ('"\'thank', 4), ('disappointment', 4), ('rough-looking', 4), ('accomplice', 4), ('nails', 4), ('her?"', 4), ('policy', 4), ('good-night,', 4), ('february', 4), ('rail', 4), ('descending', 4), ('suicide', 4), ('appears,', 4), ('lightly', 4), ("they've", 4), ('steep', 4), ('"\'do', 4), ('doorway.', 4), ('woven', 4), ('glove', 4), ('deduction.', 4), ('damning', 4), ('remarkable.', 4), ('excite', 4), ('expression,', 4), ('struggle,', 4), ('cliff,', 4), ('jones,', 4), ('also."', 4), ('aback', 4), ('premature', 4), ('explanation,', 4), ('"so,', 4), ('chatting', 4), ('night?', 4), ('gasp', 4), ('murderers', 4), ('bicycle?"', 4), ('"after', 4), ('collapsed', 4), ('demand', 4), ('susan', 4), ('street?"', 4), ('ability', 4), ('sullen', 4), ('sympathies', 4), ('roads', 4), ('trainer.', 4), ('refusal', 4), ('present."', 4), ('library', 4), ('noticed,', 4), ('labyrinth', 4), ('pearl,', 4), ('are,"', 4), ('would.', 4), ('clerk.', 4), ('fragments.', 4), ('here?', 4), ('napoleons', 4), ('rejoiced', 4), ('"her', 4), ('hinged', 4), ("come!'", 4), ('confirmed', 4), ('coal-black', 4), ('paler', 4), ('household,', 4), ('postpone', 4), ('fact.', 4), ('knot', 4), ('chatham', 4), ('memory,', 4), ('applied', 4), ('volunteered', 4), ('sentence', 4), ('red.', 4), ('type,', 4), ('angry,', 4), ('revolver.', 4), ('row,', 4), ('cambridge.', 4), ('slammed', 4), ('overtook', 4), ('cousin', 4), ('conceived', 4), ('proves', 4), ('land,', 4), ('twist', 4), ('commissionnaire', 4), ('peep', 4), ('advantage.', 4), ('rocks,', 4), ('varied', 4), ('fog.', 4), ('satisfied.', 4), ('late!"', 4), ('sketches', 4), ('felony,', 4), ('fashionable', 4), ('ejaculated', 4), ('judicial', 4), ('landed', 4), ('escape."', 4), ('note?"', 4), ('broad-brimmed', 4), ('"first', 4), ('significance', 4), ('sleeping', 4), ('penny', 4), ('piled', 4), ('lord,', 4), ('close,', 4), ('forbes,', 4), ('arm-chair,', 4), ('"i\'m', 4), ('bell-rope,', 4), ('distance.', 4), ('indescribably', 4), ('unknown.', 4), ('successes', 4), ('crossing', 4), ('scar', 4), ('four.', 4), ('verify', 4), ('material,', 4), ('nets', 4), ("woodman's", 4), ('saturday,', 4), ('twenty-six', 4), ('recognise', 4), ('cheeks.', 4), ("'he", 4), ('repeated,', 4), ('innocent,', 4), ('knew.', 4), ('simple.', 4), ('close.', 4), ('oakshott,', 4), ('frock-coat', 4), ('"\'it\'s', 4), ('sample', 4), ('caution', 4), ('fortunately', 4), ('devoid', 4), ('suppression', 4), ('slipping', 4), ('passion.', 4), ('annie', 4), ('greeted', 4), ('"whom', 4), ('brave', 4), ('pyland', 4), ('glitter', 4), ('concentrate', 4), ('helps', 4), ('mates,', 4), ('enthusiasm', 4), ('neighbor', 4), ('should,', 4), ('counsel', 4), ('handled', 4), ('horror,', 4), ('trade,', 4), ('sofa.', 4), ('permanent', 4), ('examination.', 4), ('dispose', 4), ('wait.', 4), ('complete."', 4), ('papers?"', 4), ("then,'", 4), ('beauties', 4), ('frayed', 4), ('plain,', 4), ('awkward', 4), ('stirred', 4), ('slinking', 4), ('lyons,', 4), ('drawers.', 4), ('trainer', 4), ('agents,', 4), ('skipper', 4), ('domestic', 4), ('convinced,', 4), ('marks,', 4), ('blind,', 4), ('occurred."', 4), ('ghost', 4), ('deep-set', 4), ('missing,', 4), ('pitt', 4), ('thumb.', 4), ('preceding', 4), ('crying', 4), ('sucked', 4), ('pistol,', 4), ('holmes:', 4), ('curt', 4), ('window."', 4), ("'i'll", 4), ('covering', 4), ('back?"', 4), ('visit,', 4), ('american.', 4), ('cupboard', 4), ('yelled.', 4), ("'this", 4), ('simplest', 4), ('bleak', 4), ('bicycle."', 4), ('movement', 4), ('form.', 4), ('approached,', 4), ("minutes'", 4), ('weighed', 4), ('bohemian', 4), ('whisked', 4), ('threats', 4), ('peter,', 4), ('regaining', 4), ('fever', 4), ('october', 4), ('flesh', 4), ('gallery', 4), ('recompense', 4), ('progress.', 4), ('yet?"', 4), ('shouting', 4), ('noting', 4), ('through."', 4), ('infer', 4), ('she;', 4), ('accomplished', 4), ('brain,', 4), ('rogue', 4), ('intimacy', 4), ('interrupt', 4), ('waiting-room', 4), ('mad.', 4), ('clothes.', 4), ('suspicions,', 4), ('tramp', 4), ('wishing', 4), ('bully', 4), ('"will', 4), ('children.', 4), ("hopkins's", 4), ('resource', 4), ('candidate', 4), ('tinted', 4), ('brow.', 4), ('collected', 4), ('brightest', 4), ('lengthy', 4), ('date."', 4), ('pass,', 4), ('introducing', 4), ('died.', 4), ('billiard-room', 4), ('forces', 4), ('overcoat.', 4), ('indeed!"', 4), ('troubles', 4), ('tingling', 4), ('horse."', 4), ('cluster', 4), ('enters', 4), ('kettle', 4), ('crippled', 4), ('persecution', 4), ('least.', 4), ('scotch', 4), ('bit,', 4), ('wood-pile,', 4), ('push', 4), ('guessed', 4), ('none."', 4), ('protruded', 4), ('indicated,', 4), ('sharply', 4), ('consequence', 4), ('annoyed', 4), ('duties,', 4), ('yonder.', 4), ('army', 4), ('belief,', 4), ('important,"', 4), ('walls,', 4), ('turner,', 4), ('question,"', 4), ('developed', 4), ('invalid', 4), ('example."', 4), ('receives', 4), ('corridors,', 4), ('writer', 4), ('convenience', 4), ('upward,', 4), ('resistance', 4), ('farthest', 4), ('clouded', 4), ('came."', 4), ('creases', 4), ('rose,', 4), ('clean-shaven', 4), ('point?"', 4), ('bars', 4), ('aquiline', 4), ('consolation', 4), ('despair,', 4), ('arms,', 4), ('slam', 4), ('jury."', 4), ('this!"', 4), ('frantically', 4), ('movements.', 4), ('frosty', 4), ('build', 4), ('act.', 4), ('coins', 4), ('guard.', 4), ('loaded', 4), ('whiskers', 4), ('black-bearded', 4), ('sharp,', 4), ('angel,', 4), ('warmly', 4), ('pays', 4), ('bannister.', 4), ('grecian', 4), ('author', 4), ('cripple', 4), ('practitioner', 4), ('instantly,', 4), ('englishman', 4), ('perceiving', 4), ('waning', 4), ('decidedly', 4), ('characteristics', 4), ('unfolded', 4), ('wayside', 4), ('heaven,', 4), ('stone-flagged', 4), ('enemy.', 4), ('board,', 4), ('snap', 4), ('reconcile', 4), ('apparition', 4), ('evidently,', 4), ('glaring', 4), ('guineas', 4), ('summons', 4), ('kidnapped', 4), ('attended', 4), ("mawson's", 4), ('birth', 4), ('threaten', 4), ('sneer', 4), ('giant', 4), ('keys', 4), ('nose.', 4), ('moan', 4), ('assures', 4), ("servants'", 4), ('foresee', 4), ('misery', 4), ('that!', 4), ('twelve.', 4), ('wine,', 4), ('hunting-crop', 4), ("pope's", 4), ('consultation', 4), ('indifference', 4), ('bizarre', 4), ('drops', 4), ('history.', 4), ('befall', 4), ('"such', 4), ('powdered', 4), ('incredulity', 4), ('"no,"', 4), ('thinner', 4), ('signature', 4), ('sky', 4), ('accomplice.', 4), ('beard.', 4), ('principally', 4), ('widower,', 4), ('condemned', 4), ('hushed', 4), ('hunted', 4), ('retreat,', 4), ('fancies', 4), ('had.', 4), ('stable-boy,', 4), ('revenge', 4), ('soldier,', 4), ('aid.', 4), ('squat,', 4), ('discern', 4), ('use,', 4), ('wednesday', 4), ('darker', 4), ('beautiful,', 4), ('glimpses', 4), ('"quick,', 4), ('grimpen,', 4), ("barrymore's", 4), ('arm-chair', 4), ('negative', 4), ('arouse', 4), ('proceeding', 4), ('reading,', 4), ('handle,', 4), ('machine,', 4), ('drawer.', 4), ('introspective', 4), ('curving', 4), ('shillings', 4), ('destroyed', 4), ('gang,', 4), ('sister."', 4), ('presently.', 4), ('funny', 4), ('errand,', 4), ('intently', 4), ('weather.', 4), ('keenest', 4), ('right?"', 4), ('unfair', 4), ('pleasant,', 4), ('weighing', 4), ('rights', 4), ('perkins', 4), ('months,', 4), ('anything?"', 4), ('limp', 4), ('meal', 4), ('appeals', 4), ('score', 4), ('hands?"', 4), ('across.', 4), ('incident,', 4), ('tremendous', 4), ('sink', 4), ('appeared.', 4), ('watch,', 4), ('scratched', 4), ('size,', 4), ('shelter', 4), ('qualities', 4), ('spaulding', 4), ('rucastles', 4), ('pain.', 4), ('sin', 4), ('hardy,', 4), ('craggy', 4), ('read,', 4), ('spasm', 4), ('consent', 4), ('numbers', 4), ('sound.', 4), ('obscure.', 4), ("company's", 4), ('flickering', 4), ('supernatural', 4), ('thinker', 4), ('convincing', 4), ('club.', 4), ('bushes.', 4), ('naked', 4), ('housekeeper.', 4), ('object,', 4), ('meantime,', 4), ('set,', 4), ('flood', 4), ('victim.', 4), ('proofs,', 4), ('figures,', 4), ('tap', 4), ('detain', 4), ('conclusion,', 4), ('satisfaction,', 4), ('sea.', 4), ('ivory', 4), ('h', 4), ('pals', 4), ('bearing,', 4), ('breadth', 4), ('comic', 4), ('coldly', 4), ('concealment', 4), ('impatiently', 4), ('suspicions.', 4), ('twenty-four', 4), ('relic', 4), ('been!"', 4), ('entire', 4), ('trouble."', 4), ('enemy', 4), ('simplicity', 4), ('casts', 4), ('undid', 4), ('certainty.', 4), ('tut,', 4), ('morally', 4), ('dapper', 4), ('grace.', 4), ('candles', 4), ('meal.', 4), ('hopelessly', 4), ('reasoning.', 4), ('probable."', 4), ('disposition,', 4), ('straightened', 4), ('bird.', 4), ('eastern', 4), ('bone', 4), ('improved', 4), ('move,', 4), ("morning's", 4), ('knots', 4), ('suggests', 4), ('tooth', 4), ('impulse', 4), ('calls', 4), ('usual,', 4), ('that--"', 4), ('lengths', 4), ('what,', 4), ('projected', 4), ('brunton.', 4), ('listless', 4), ('governor', 4), ('about."', 4), ('banking', 4), ('shag', 4), ('her;', 4), ('eyelids', 4), ('careless', 4), ('speak.', 4), ('entries', 4), ('square.', 4), ('candle,', 4), ("minutes.'", 4), ('bookcase', 4), ('met.', 4), ('openly', 4), ('wood.', 4), ('shivering', 4), ('shrubbery,', 4), ('vilest', 4), ('"last', 4), ('confide', 4), ('allowance', 4), ('seeking', 4), ('passenger', 4), ('convict,', 4), ('prisoners', 4), ('"\'in', 4), ('spoken,', 4), ('helping', 4), ('surface', 4), ('learning', 4), ('letting', 4), ('represented', 4), ('radius', 4), ('ejaculated.', 4), ('mawson', 4), ('clear?"', 4), ('shutters,', 4), ('details."', 4), ('"\'come,', 4), ('dates', 4), ('want.', 4), ('sitting.', 4), ('creature.', 4), ('knitted', 4), ("'cooee!'", 4), ('fancy.', 4), ('quicker', 4), ("mcfarlane's", 4), ('reserved', 4), ('offices,', 4), ('investigating', 4), ('glad,', 4), ('deliver', 4), ('regarding', 4), ('drifting', 4), ('snow,', 4), ('statues', 4), ('reward,', 4), ('lord!', 4), ('crackling', 4), ('rather,', 4), ('then,"', 4), ('west.', 4), ('founder', 4), ('"\'on', 4), ('confided', 4), ('piteous', 4), ('duly', 4), ('quality', 4), ('pronounce', 4), ('retired.', 4), ('appointment.', 4), ('operations', 4), ('australian', 4), ('armed', 4), ('"nothing,', 4), ('mine,"', 4), ('invaluable', 4), ('think,"', 4), ('cottage.', 4), ('bohemia,', 4), ('excitement,', 4), ('discussion', 4), ('taller', 4), ('pack', 4), ('effective.', 4), ('attentions', 4), ('rapid', 4), ('sunlight', 4), ('committed.', 4), ('frantic', 4), ('gossip', 4), ('forcing', 4), ('century,', 4), ('a.', 4), ('norton,', 4), ('charm', 4), ('stapletons.', 4), ('occasion.', 4), ('thoughts.', 4), ('absent,', 4), ('future.', 4), ('folk,', 4), ('harm,', 4), ('disease,', 4), ('jury,', 4), ('niece', 4), ('moment."', 4), ('surprised.', 4), ('"there,', 4), ('ferns', 4), ('objections', 4), ('gloria', 4), ('best,', 4), ('used.', 4), ('courage,', 4), ('ransacked', 4), ('maids', 4), ('there,"', 4), ('untimely', 4), ('precisely', 4), ('delicacy,', 4), ('moist', 4), ('cease', 4), ('generations', 4), ('only,', 4), ('cambridge', 4), ('exception', 4), ('lodge.', 4), ('sharply.', 4), ('effects', 4), ('summit', 4), ('preparations', 4), ('errand.', 4), ('enabled', 4), ('top.', 4), ('stones.', 4), ('columns', 4), ('plot.', 4), ("hours'", 4), ('sunshine.', 4), ('shrank', 4), ('waterproof', 4), ('thence', 4), ('fiercely', 4), ('cork', 4), ('grassy', 4), ('indiscreet', 4), ('may.', 4), ('arrangements', 4), ('release', 4), ('splintered', 4), ('grinning', 4), ('roared', 4), ('coil', 4), ('truly', 4), ('some,', 4), ('britain', 4), ('fainted,', 4), ('blocked', 4), ('grosvenor', 4), ('convey', 4), ('africa', 4), ('vaguely', 4), ('ready."', 4), ('knowledge.', 4), ('crime?', 4), ('kicked', 4), ('tested', 4), ('again!"', 4), ('outhouse', 4), ('ample', 4), ('roof,', 4), ('remains.', 4), ('stood,', 4), ("you,'", 4), ('direction."', 4), ('chances', 4), ('process', 4), ('deserted.', 4), ('strength,', 4), ('"\'is', 4), ('scheme', 4), ('arresting', 4), ('motive.', 4), ('trousers', 4), ('managing', 4), ('harker', 4), ('style', 4), ('common.', 4), ('fury', 4), ('persuaded', 4), ('document,', 4), ('elderly,', 4), ('barclay.', 4), ('madly', 4), ('science,', 4), ("cunningham's", 4), ('defence', 4), ('discovery,', 4), ('"where,', 4), ('tortured', 4), ('him,"', 4), ('lighter', 4), ("jack,'", 4), ('flowers.', 4), ('burned,', 4), ('hounds', 4), ('retaining', 4), ('luncheon', 4), ('stand,', 4), ('proceedings', 4), ('tottenham', 4), ('fingers,', 4), ('eyebrows,', 4), ('c.', 4), ('sutherland,', 4), ('paroxysm', 4), ('rattling', 4), ('propriety', 4), ('seaman,', 4), ('"why?"', 4), ('waiting."', 4), ('roaring', 4), ('hollow,', 4), ('analytical', 4), ('sloping', 4), ('defiant', 4), ('from?"', 4), ('buttoned', 4), ('excitable', 4), ('quote', 4), ('hand?"', 4), ('thoughtful', 4), ('marrying', 4), ('weird', 4), ('hum!', 4), ('apartment,', 4), ('presentation', 4), ('sentences', 4), ('hobby', 4), ('perpetual', 4), ('about.', 4), ('france,', 4), ('leader', 4), ('tempestuous', 4), ('proper', 4), ('rusty', 4), ('foresaw', 4), ('gaiters,', 4), ('talking,', 4), ('photograph.', 4), ('gregory,', 4), ('cunninghams', 4), ('sob', 4), ('impatience', 4), ('play.', 4), ('region', 4), ("clair's", 4), ('circles', 4), ('beddoes,', 4), ('notebook,', 4), ('insight', 4), ('hunt,', 4), ('importance."', 4), ('lestrade?"', 4), ('droning', 4), ('millions', 4), ('proposed', 4), ('"oh', 4), ('bushes,', 4), ('thread', 4), ('development.', 4), ('captured', 4), ('jutted', 4), ('cab.', 4), ('crocker,', 4), ('robert', 4), ('harry', 4), ('crowded', 4), ('inscription', 4), ('lied', 4), ('fewer', 4), ('feared,', 4), ("client's", 4), ('brow,', 4), ('incredible,', 4), ('addition', 4), ('terrified', 4), ('disreputable', 4), ('bands', 4), ('tread', 4), ('foreseen', 4), ('reek', 4), ("he'd", 4), ('tire', 4), ('appealed', 4), ('southampton', 4), ('assumed', 4), ('could.', 4), ('catastrophe.', 4), ('endeavour', 4), ('hurlstone', 4), ('engaged,', 4), ('school,', 4), ('retire', 4), ('box.', 4), ('bills', 4), ('request,', 4), ('reigning', 4), ('happens,', 4), ('healthy', 4), ('confidence."', 4), ('seal', 4), ('dull,', 4), ('peg', 4), ('repay', 4), ('pietro', 4), ('disappearance.', 4), ('pinner', 4), ('compromise', 4), ('alternative.', 4), ('writhed', 4), ('neighbours,', 4), ('wilson.', 4), ('fellows', 4), ('sorrow', 4), ('tonight.', 4), ('tracks.', 4), ('whitney,', 4), ('feet."', 4), ('implicate', 4), ('briarbrae', 4), ('fright', 4), ('brothers,', 4), ('cocoanut', 4), ('stammered.', 4), ('fists', 4), ('injustice.', 4), ('is--"', 4), ('shrug', 4), ('barnicot', 4), ('delighted."', 4), ('diabolical', 4), ('guess,', 4), ('coffee,', 4), ('formerly', 4), ('baskervilles.', 4), ('sydenham', 4), ('hunter.', 4), ('north.', 4), ('wedding.', 4), ('tunnel', 4), ('degree', 4), ('russet', 4), ('figure.', 4), ('unforeseen', 4), ('withdraw', 4), ('madam."', 4), ('observations', 4), ('trailing', 4), ('privilege', 4), ('stopped.', 4), ('betting', 3), ('vanishing', 3), ("mawson's?'", 3), ('moved.', 3), ('click', 3), ('comely', 3), ('moral', 3), ('tilted', 3), ('deaf,', 3), ('identify', 3), ('morrison', 3), ('joseph.', 3), ('moment!"', 3), ('doing,', 3), ('wedding?"', 3), ('whipped', 3), ('abyss.', 3), ('replied', 3), ('sleeves.', 3), ('majesty,', 3), ('stand.', 3), ('henry?"', 3), ('openshaw,', 3), ('hunt.', 3), ('smith.', 3), ('column,', 3), ('b', 3), ('tongue,', 3), ('cheerily.', 3), ('church,', 3), ('sons,', 3), ('march,', 3), ('stunted', 3), ('cotton', 3), ('disposal,', 3), ('"ha,', 3), ('tuesday,', 3), ('sleeves', 3), ('wedding,', 3), ('consulted.', 3), ('wheel,', 3), ('shapeless', 3), ('"those', 3), ('tobacco,', 3), ('hospitality', 3), ('comply', 3), ('eaten', 3), ('these.', 3), ('episode', 3), ('gravesend', 3), ('ready.', 3), ('"nearly', 3), ('soothe', 3), ('safety."', 3), ('lieutenant', 3), ('here!', 3), ('fumes', 3), ('good-day,', 3), ('career,', 3), ('o,', 3), ('judge.', 3), ('entangled', 3), ('"three', 3), ('beautifully', 3), ('written.', 3), ('woodwork', 3), ('composer', 3), ('corporation', 3), ('regained', 3), ('kensington,', 3), ('probable.', 3), ('when?"', 3), ('awake', 3), ('has."', 3), ('heard."', 3), ('relatives', 3), ('126b', 3), ('bad?"', 3), ('swan', 3), ("'keep", 3), ('subjects', 3), ('depression.', 3), ('patted', 3), ('dark."', 3), ('advertisements', 3), ('yacht', 3), ('"inspector', 3), ('omit', 3), ('dreams.', 3), ('latter,', 3), ('somebody', 3), ('audacity', 3), ("here?'", 3), ('deliberately', 3), ('ulster', 3), ('astrakhan', 3), ('press.', 3), ('also,"', 3), ('tie', 3), ('eyford,', 3), ('reckoned', 3), ('vivid', 3), ('dirty,', 3), ('existed', 3), ("machine.'", 3), ('gale', 3), ('prints', 3), ('moth', 3), ('us,"', 3), ('host', 3), ('edge.', 3), ('evening,"', 3), ("'you'll", 3), ('flattered', 3), ('dismal', 3), ('middle.', 3), ("melas,'", 3), ('leg', 3), ('wants,', 3), ('coldly.', 3), ('lately', 3), ('deals', 3), ('grave,', 3), ('headquarters,', 3), ('outré', 3), ("holmes,'", 3), ('terrace.', 3), ('symbols', 3), ('on?"', 3), ('reaches', 3), ('soft,', 3), ('tense', 3), ('choice', 3), ('to-morrow?"', 3), ('cleverness', 3), ('copy,', 3), ('edward', 3), ('gravely', 3), ('intersected', 3), ('gentleman?"', 3), ('whip,', 3), ('horrify', 3), ('conceivably', 3), ('lapse', 3), ('explain.', 3), ('planning', 3), ('cellar.', 3), ('situation."', 3), ('milverton.', 3), ('feet;', 3), ('expectation', 3), ('pour', 3), ('event,', 3), ('dignity.', 3), ('concerned,', 3), ('sneer.', 3), ('writing-table', 3), ('confidential', 3), ('indeed."', 3), ('bones.', 3), ('orphan', 3), ('month,', 3), ('loaf', 3), ('preliminary', 3), ("him?'", 3), ('glow', 3), ('back!"', 3), ("'at'", 3), ('ascertaining', 3), ('elegant,', 3), ('draped', 3), ("you'd", 3), ('situated.', 3), ('whistle,', 3), ('four-wheeler,', 3), ('exalted', 3), ('narrative:', 3), ('friends.', 3), ('lamp.', 3), ("visitor's", 3), ('son."', 3), ('presumption', 3), ('consciousness', 3), ("bride's", 3), ('chaplain,', 3), ('laughter', 3), ('harm."', 3), ('jockey', 3), ('performed', 3), ('nest', 3), ('fashion:', 3), ('sill', 3), ('lecturer', 3), ('elbow.', 3), ('honour,', 3), ('vision', 3), ('foul-mouthed', 3), ('stopping', 3), ('waiting-room.', 3), ('"we\'ve', 3), ('detail.', 3), ('surgeon', 3), ('presumably', 3), ('busts,', 3), ('residing', 3), ('dishonoured', 3), ('charge,', 3), ('much,"', 3), ('ascetic', 3), ('england."', 3), ('twelve,', 3), ('securing', 3), ('"tut,', 3), ('skin.', 3), ('envelope,', 3), ('serves', 3), ('whip', 3), ('dene', 3), ('pockets.', 3), ('his.', 3), ('villainy', 3), ('moved,', 3), ('rebels', 3), ('"seven', 3), ('x.', 3), ('wound.', 3), ('place?"', 3), ('village.', 3), ('concerned.', 3), ('stay."', 3), ('excellent!"', 3), ('cases."', 3), ('nobleman.', 3), ('hard.', 3), ('position."', 3), ('sobbing', 3), ('attendant', 3), ('scratches', 3), ('solitude', 3), ('disturbance', 3), ('scene.', 3), ('smouldering', 3), ('mccarthys', 3), ('lines,', 3), ('waited.', 3), ('armitage', 3), ('yes;', 3), ('no,"', 3), ('nine.', 3), ('crib', 3), ('rank', 3), ('four,', 3), ('repulsive', 3), ('seventy', 3), ('vigil,', 3), ('accounts.', 3), ('rows', 3), ('ring,', 3), ('mystery!"', 3), ('disaster', 3), ('warmly.', 3), ('chance."', 3), ('sussex,', 3), ('necessary,', 3), ('devoured', 3), ('descended.', 3), ('typewritten', 3), ('avenge', 3), ('winds,', 3), ('foot,', 3), ('nearing', 3), ('investigations', 3), ('museum', 3), ('prostrate', 3), ('expect.', 3), ('conception', 3), ('earth--"', 3), ('abstruse', 3), ('wax.', 3), ('intently,', 3), ('ferguson', 3), ('aroused.', 3), ('chimneys,', 3), ('emptied', 3), ('worst.', 3), ('out!"', 3), ('daughter.', 3), ('serious,', 3), ('lady."', 3), ('timber', 3), ('wednesday.', 3), ('article,', 3), ('plan,', 3), ('smack!', 3), ('conduct,', 3), ('grasp.', 3), ('less,', 3), ('unwelcome', 3), ('pale.', 3), ('informing', 3), ('pluck', 3), ('mumbled', 3), ('reliable', 3), ('berkshire', 3), ('says:', 3), ('banker,', 3), ("that?'", 3), ('moulton,', 3), ('gun,', 3), ('widower', 3), ('watson;', 3), ('fast,', 3), ('interests,', 3), ('scott_,', 3), ('began,', 3), ('straker.', 3), ('arthur.', 3), ('whereabouts', 3), ('indefinite', 3), ('sleep.', 3), ('notice.', 3), ('ledger', 3), ('casting', 3), ('favoured', 3), ('destroying', 3), ('realise', 3), ('clambered', 3), ('enter,', 3), ('necktie.', 3), ('admiration.', 3), ('leg.', 3), ('landlord.', 3), ('satisfied,', 3), ('harrison.', 3), ('tell,', 3), ('wiser.', 3), ('schoolmaster', 3), ('tend', 3), ('crisis,', 3), ('constructed', 3), ('machinery', 3), ('twinkled', 3), ('temples.', 3), ('shuffled', 3), ('sentence,', 3), ('ironical', 3), ('secure,', 3), ('minds,', 3), ('tool."', 3), ('guarded', 3), ('prosperous', 3), ('languid', 3), ('lock."', 3), ('boat.', 3), ('entrance.', 3), ('holdhurst."', 3), ('two-storied', 3), ('suspicious,', 3), ('boards', 3), ('measures', 3), ('unique,', 3), ('floor."', 3), ('motion', 3), ('protested', 3), ('flaming', 3), ('look-out', 3), ('doors,', 3), ('ate', 3), ('resigned', 3), ('worked.', 3), ('strove', 3), ('earnestness,', 3), ('gravel', 3), ('rat.', 3), ('holiday,', 3), ('novel', 3), ('heaven!', 3), ('choked', 3), ('unmarried', 3), ('askance', 3), ('suitor', 3), ('"\'"i', 3), ('engraved', 3), ('crackled', 3), ('full.', 3), ('wrinkled,', 3), ('genteel', 3), ('schoolmaster.', 3), ('melancholy.', 3), ('good-morning,', 3), ('clubs', 3), ('unseen', 3), ('pronounced', 3), ('shrieked', 3), ('clipped', 3), ('matting', 3), ('appointment,', 3), ('"\'ah!\'', 3), ('hedge.', 3), ('stake.', 3), ('cartwright,', 3), ('describe.', 3), ('well-dressed', 3), ('canada.', 3), ('assistant,', 3), ('prosperity', 3), ('sleeves,', 3), ('proportion', 3), ('eighteenth', 3), ('arrangements,', 3), ('cling', 3), ("'95,", 3), ('olive', 3), ('"good-evening,', 3), ('foolscap', 3), ('raised,', 3), ('standing,', 3), ('prominent', 3), ('hastening', 3), ("tradesmen's", 3), ('baskerville."', 3), ('weigh', 3), ('choking', 3), ('tax', 3), ('"here\'s', 3), ('negro', 3), ('squalid', 3), ("duties?'", 3), ('brilliantly', 3), ('table."', 3), ('wanton', 3), ('waistcoat,', 3), ('proud,', 3), ('"absolutely."', 3), ('animal.', 3), ('blaze.', 3), ('particulars.', 3), ('attempting', 3), ('poker,', 3), ('difference.', 3), ('tomorrow."', 3), ('documents,', 3), ('gift', 3), ('mullioned', 3), ('lust', 3), ('ideal', 3), ('slightly', 3), ('explaining', 3), ('tools', 3), ('january', 3), ('moonlight,', 3), ('half.', 3), ('fame', 3), ('"too', 3), ('packed', 3), ('find,', 3), ('eleven."', 3), ('again;', 3), ('fence', 3), ('contrary', 3), ('attendant.', 3), ('avail', 3), ('joint', 3), ('extract', 3), ('beginning.', 3), ('failed,', 3), ('copying', 3), ('well-marked', 3), ('ink.', 3), ('coram,', 3), ("pawnbroker's", 3), ('laughter,', 3), ('deplorable', 3), ('elastic', 3), ('addition,', 3), ('page.', 3), ('motionless,', 3), ('checks', 3), ('tearing', 3), ('narratives,', 3), ('good-night."', 3), ('dismiss', 3), ('appledore', 3), ('victim,', 3), ('boulders,', 3), ('peterson', 3), ('air-gun', 3), ('faint.', 3), ('beppo,', 3), ('hitherto', 3), ('colleague.', 3), ('beef', 3), ('thirty-four', 3), ('mania', 3), ('coffee.', 3), ('harshly', 3), ('intensified', 3), ('northern', 3), ('story."', 3), ('band,', 3), ('china', 3), ('conspiracy,', 3), ('enigmatical', 3), ('likely,', 3), ('yielded', 3), ('accurately', 3), ('is:', 3), ('place,"', 3), ('drawers,', 3), ('hospital,', 3), ('blackmailing', 3), ('pursuer', 3), ('humour', 3), ('conjecture,', 3), ('wickedness', 3), ('sliding', 3), ('threatening', 3), ('left-handed', 3), ('await', 3), ('disappointment,', 3), ('indication,', 3), ('tuesday.', 3), ('roots', 3), ('latimer', 3), ('midway', 3), ('preparatory', 3), ('terms,', 3), ('accounted', 3), ('millar,', 3), ('notion', 3), ('delay."', 3), ("up,'", 3), ('opening,', 3), ('murphy,', 3), ('devil,', 3), ('"he\'ll', 3), ('work,"', 3), ('lithe,', 3), ('bind', 3), ('foot."', 3), ('apology,', 3), ('intrusion,', 3), ('rushes', 3), ('turf,', 3), ('injuries.', 3), ('report,', 3), ('devon', 3), ('colourless', 3), ('thunder', 3), ('agreement', 3), ('complained', 3), ('charity', 3), ('engine', 3), ('say?', 3), ('delight,', 3), ('100', 3), ('forwarded', 3), ('development,', 3), ('k', 3), ('fortunate,', 3), ('engaging', 3), ('doubled', 3), ('shamefully', 3), ('mischief', 3), ('sight,', 3), ('come!"', 3), ('san', 3), ('exceptionally', 3), ('graceful,', 3), ('joking,', 3), ('frankness', 3), ('boot?"', 3), ('fascination', 3), ('appointment."', 3), ('prison', 3), ('slipped,', 3), ('narratives.', 3), ('adopted', 3), ('altogether,', 3), ('bond', 3), ('tries', 3), ('contracted', 3), ('kingdom', 3), ('corresponds', 3), ('possesses', 3), ('plain.', 3), ('kensington', 3), ('liverpool,', 3), ('crinkled', 3), ('language.', 3), ('planted', 3), ('destroyed."', 3), ('inhuman', 3), ('viii.', 3), ('coming.', 3), ('mount-james?"', 3), ('further.', 3), ('happened."', 3), ('liable', 3), ('lap', 3), ('resolve', 3), ('ascertained', 3), ('museum,', 3), ('learn,', 3), ('cows', 3), ('cut,', 3), ('whenever', 3), ('belong', 3), ('faculties', 3), ('cavalier', 3), ('liberty,', 3), ('dark.', 3), ('develop', 3), ('blessington.', 3), ('happened?', 3), ('quantity', 3), ('howells,', 3), ('blows', 3), ('want?"', 3), ("ladyship's", 3), ('murders', 3), ('daylight,', 3), ('hate', 3), ('curtain.', 3), ("'from", 3), ('far."', 3), ('positively', 3), ('knife,"', 3), ('piercing', 3), ('wealth,', 3), ('control', 3), ('despatch-box', 3), ('included', 3), ('plays', 3), ('forced,', 3), ('fourteen,', 3), ("baskerville's", 3), ('silent.', 3), ('afghanistan,', 3), ('naval', 3), ('lithe', 3), ('innocent."', 3), ('summer.', 3), ('each,', 3), ('see?"', 3), ('shock,', 3), ('values', 3), ('hind', 3), ('word."', 3), ('arrived,', 3), ('lurked', 3), ('rogues', 3), ('simon.', 3), ('rule', 3), ('pillow.', 3), ('professor.', 3), ('dixon,', 3), ('farther.', 3), ('hers,', 3), ('cardboard', 3), ('eton', 3), ('tea.', 3), ('hammered', 3), ('"kindly', 3), ('"\'dear', 3), ('gaining', 3), ('visible.', 3), ('disappear', 3), ('boots?"', 3), ("enemy's", 3), ('baying', 3), ('typewriter', 3), ('apologize', 3), ('landau', 3), ('easily.', 3), ('perturbed', 3), ('clearly.', 3), ('town."', 3), ('customer', 3), ('swayed', 3), ('heather', 3), ("frankland's", 3), ('encourage', 3), ('tomorrow,', 3), ('sounded', 3), ('foremost', 3), ('sussex', 3), ('ingenuity', 3), ('"miss', 3), ('picture.', 3), ('ruffian,', 3), ('believing', 3), ('winchester.', 3), ('interpreter,', 3), ('energies', 3), ('merriment.', 3), ('invest', 3), ('week-end', 3), ('wager', 3), ('training,', 3), ('temper.', 3), ('spaniel.', 3), ('souls', 3), ('briskly', 3), ('bog', 3), ('fixing', 3), ('oaths', 3), ('testing', 3), ('adventure,', 3), ('cable', 3), ('mind,"', 3), ('expedition.', 3), ('minute,', 3), ('doing?', 3), ('pleasure."', 3), ('dry,', 3), ('toller,', 3), ('interested,', 3), ('professed', 3), ('out-house', 3), ('learned.', 3), ('statues.', 3), ('offices.', 3), ('upraised', 3), ('youngest', 3), ("enough,'", 3), ('experience."', 3), ('escort', 3), ('gregory', 3), ('post.', 3), ('roofs', 3), ('built,', 3), ('dangers', 3), ('represents', 3), ('hoped,', 3), ('straining', 3), ('consulted', 3), ('metal,', 3), ('shrieked,', 3), ('distress.', 3), ('manservant,', 3), ('locket', 3), ('bang', 3), ('scrutiny', 3), ('shutters.', 3), ('punish', 3), ('outlying', 3), ('silvered', 3), ('sweetheart,', 3), ('ten,', 3), ('practical,', 3), ('effort.', 3), ('tastes', 3), ('covent', 3), ('onward.', 3), ('journeys', 3), ('bounding', 3), ('youngster', 3), ('befallen', 3), ('squares', 3), ('madam?"', 3), ('dinner."', 3), ('mysteries,', 3), ('faculty', 3), ('lawyer.', 3), ('pouch,', 3), ('treachery', 3), ('minutely.', 3), ('genial', 3), ('taking,', 3), ('frank.', 3), ('motive,', 3), ('laughing;', 3), ('comparing', 3), ('swarm', 3), ('league.', 3), ('hopes?"', 3), ('proceedings,', 3), ('villas', 3), ('inches,', 3), ("now,'", 3), ('forbid', 3), ('gateway', 3), ('ventilator,', 3), ('side-table.', 3), ('knocked,', 3), ('avert', 3), ('chimneys', 3), ('banked', 3), ('vigil', 3), ('those.', 3), ('guineas,', 3), ('drink.', 3), ('hellish', 3), ('severely', 3), ('henry,"', 3), ('flowering', 3), ('readers', 3), ('ventilator."', 3), ('swiftly,', 3), ('fall."', 3), ('thoroughfare.', 3), ('gold.', 3), ('feature.', 3), ('cross,', 3), ('fast.', 3), ('quick!', 3), ('leaped', 3), ('complete,', 3), ('horizon', 3), ('stepney.', 3), ('frenzied', 3), ("do.'", 3), ('sum,', 3), ('make.', 3), ('montague', 3), ('till', 3), ('muffled', 3), ('villains', 3), ('remarks,', 3), ('cubitt.', 3), ('observe.', 3), ('collection,', 3), ('scratching', 3), ('render', 3), ('concerns', 3), ('bricks', 3), ('purpose,', 3), ('glided', 3), ("other's", 3), ('known."', 3), ('construction', 3), ('majesty.', 3), ('sweep', 3), ('smokes', 3), ('roylott,', 3), ('427', 3), ('token', 3), ('levers', 3), ('shocking', 3), ('ran:', 3), ('everywhere', 3), ('beggar,', 3), ('east.', 3), ('doctor;', 3), ('clue,', 3), ('disposal."', 3), ('wing,', 3), ('bullets', 3), ('deliberate', 3), ('as,', 3), ('maddening', 3), ('harsh', 3), ('countenance,', 3), ('mercy,', 3), ('sailor.', 3), ('seamed', 3), ('football', 3), ('slopes,', 3), ('climbing', 3), ('methodical', 3), ('pleasure,"', 3), ('writes', 3), ('necessary."', 3), ('graver', 3), ('vii.', 3), ('heads.', 3), ('carbuncle,', 3), ('trouser', 3), ('"good-night,', 3), ('reproached', 3), ('scarlet,', 3), ('court,', 3), ('alpha', 3), ('hugo,', 3), ('sheet,', 3), ('editions', 3), ('ascertained,', 3), ('traveling', 3), ('cross.', 3), ('slovenly', 3), ('finger.', 3), ('affectionate', 3), ('passionately', 3), ('remark.', 3), ('business?"', 3), ('frost', 3), ('dog-cart.', 3), ('architecture', 3), ('consulting-room,', 3), ('operation', 3), ('springy', 3), ('open."', 3), ('arrival,', 3), ('remarking', 3), ('show,', 3), ('altar', 3), ('gaze,', 3), ('fournaye,', 3), ('singing', 3), ('morrison,', 3), ('polite', 3), ('sherlock.', 3), ('"reginald', 3), ('allows', 3), ('they?"', 3), ('farm.', 3), ('buttons', 3), ('recorded', 3), ('look.', 3), ('perceive,"', 3), ('links', 3), ('dismissed', 3), ("'to", 3), ('ferocity', 3), ('spirits.', 3), ('acting,', 3), ('obvious?"', 3), ('aimed', 3), ('blessed', 3), ('gypsies', 3), ('produced.', 3), ('originally', 3), ('volumes', 3), ('veranda', 3), ('marble', 3), ('rascals', 3), ('education', 3), ('good,"', 3), ('stewart,', 3), ('ascertain', 3), ('glistening', 3), ('danger?"', 3), ('wish.', 3), ('communicative', 3), ('trains', 3), ('gates.', 3), ('goodwill', 3), ('protect', 3), ('pal', 3), ('approach,', 3), ('respects,', 3), ('firm.', 3), ('york', 3), ('saltire', 3), ('summit,', 3), ('sovereigns', 3), ('look."', 3), ('centuries', 3), ('reverence', 3), ("mind,'", 3), ('concealment.', 3), ('half-sheet', 3), ('atrocious', 3), ('tavistock', 3), ('consented', 3), ('lit,', 3), ('fingertips', 3), ("night.'", 3), ('dunlop', 3), ('reeds', 3), ('ledge.', 3), ('elias', 3), ('value.', 3), ('bob', 3), ('critical', 3), ('towers,', 3), ('kitchen.', 3), ('fearful', 3), ('fangs', 3), ('language', 3), ('dislike', 3), ('footmarks,', 3), ("rucastle's", 3), ('citizens', 3), ('job.', 3), ('bank,', 3), ('"ha!"', 3), ('clergyman,', 3), ('politics.', 3), ('suspected.', 3), ('creeping', 3), ('stuff,', 3), ("george's,", 3), ('inhabited,', 3), ('sundial', 3), ('fuss', 3), ('fading', 3), ('agitated,', 3), ('director.', 3), ('stimulating', 3), ('sallow,', 3), ('normal', 3), ('westminster', 3), ('pen.', 3), ('neatly', 3), ('wonderfully', 3), ('serenely.', 3), ('cup,', 3), ('journal', 3), ('shuddered', 3), ('dry.', 3), ('through,', 3), ('assault', 3), ('lids.', 3), ('bend', 3), ('fresh.', 3), ('mapleton,', 3), ('twinkle', 3), ('lining', 3), ('love.', 3), ('chest,', 3), ('return."', 3), ('conclusively', 3), ('track."', 3), ('matters,', 3), ('removing', 3), ('toe', 3), ('necessarily', 3), ('call."', 3), ('dreamed', 3), ('shape,', 3), ('day?"', 3), ('belonging', 3), ('six,', 3), ('summoned', 3), ('fiend!"', 3), ('imbecile', 3), ('arcade,', 3), ('used,', 3), ('he?', 3), ('catching', 3), ('income', 3), ('shadow,', 3), ('flask', 3), ('cracked', 3), ('intrigue', 3), ('drive."', 3), ('flowers', 3), ('braced', 3), ('made.', 3), ('affect', 3), ('overcome', 3), ('property,', 3), ('disagreeable', 3), ('trivial,', 3), ('lane?"', 3), ('accursed', 3), ('office?"', 3), ('westward', 3), ('questionable', 3), ('collect', 3), ('full,', 3), ('penetrated', 3), ('intricate', 3), ('mercy!"', 3), ('injuring', 3), ('rabbits', 3), ('spectacles', 3), ('beryls', 3), ('difficulty,', 3), ("one,'", 3), ('overboard', 3), ('2', 3), ('pew', 3), ('nerves.', 3), ('responded', 3), ('concealed.', 3), ('stake,', 3), ('mean?', 3), ('strong-box', 3), ('hieroglyphics', 3), ('senses.', 3), ('books.', 3), ('shaft', 3), ('them!"', 3), ('"\'of', 3), ('despatch-box.', 3), ('brazen', 3), ('ignorance', 3), ('explore', 3), ('died,', 3), ('pleased,', 3), ('all-night', 3), ('acquainted', 3), ('convict.', 3), ('financial', 3), ('bewildered', 3), ('bald', 3), ('loiterers', 3), ('james,', 3), ('lead,', 3), ('lounged', 3), ('altered', 3), ('referring', 3), ('hotels.', 3), ('"\'some', 3), ('circle.', 3), ('e', 3), ('chaplain', 3), ('longed', 3), ('court.', 3), ('move."', 3), ('revellers', 3), ('finer', 3), ('apologies', 3), ('stop.', 3), ('market,', 3), ("cubitt's", 3), ('beyond.', 3), ('candle.', 3), ('whined', 3), ('tenacious', 3), ('pretext', 3), ('vigorous', 3), ('henri', 3), ('detected', 3), ('memoirs', 3), ('patrick', 3), ('ground."', 3), ('it;', 3), ('eagerness,', 3), ('darkest', 3), ('matters."', 3), ('clotted', 3), ('impulse,', 3), ('sang', 3), ('cold-blooded', 3), ('lids', 3), ('life,"', 3), ('ritual,', 3), ('paint,', 3), ('thousands', 3), ('hard-working', 3), ('price,', 3), ('attained', 3), ('shrinking', 3), ('permanently', 3), ('market.', 3), ('realising', 3), ('backward,', 3), ('cleared.', 3), ('secretly', 3), ("goodness'", 3), ('organic', 3), ('characters.', 3), ('oxford.', 3), ('turn.', 3), ('englishman.', 3), ('detectives', 3), ('haunted', 3), ('experiences', 3), ("yesterday's", 3), ('phrases', 3), ('mary,', 3), ('sober', 3), ('proclaimed', 3), ('urged', 3), ('fortunately,', 3), ('messages', 3), ('lightning', 3), ('rambling', 3), ('arranged.', 3), ('dartmoor.', 3), ('lover,', 3), ('already,', 3), ('commence', 3), ('cairns', 3), ('rules', 3), ('trophy', 3), ('innocent?"', 3), ('doubtful', 3), ('summon', 3), ('invalid.', 3), ('politics', 3), ('loop', 3), ('does."', 3), ('stump', 3), ('convicts', 3), ('conditions,', 3), ('campaign,', 3), ('pinner.', 3), ('ivy,', 3), ('travelled.', 3), ('shut.', 3), ('world."', 3), ('defend', 3), ('whiskers,', 3), ('incident.', 3), ('fatal,', 3), ('beer', 3), ("'let", 3), ('terrier', 3), ('impression.', 3), ('tan', 3), ('practised', 3), ('"\'what,', 3), ('lodge-keeper', 3), ('dusk', 3), ('exception,', 3), ('files', 3), ('boulders', 3), ('massive,', 3), ('rage.', 3), ('hazel', 3), ('peasant', 3), ('dressed.', 3), ('calculated', 3), ('form,', 3), ('splashing', 3), ('easy,', 3), ('carpet."', 3), ('income,', 3), ('"holmes!"', 3), ('reputation,', 3), ('hesitation.', 3), ('armchair,', 3), ('overhung', 3), ('silk,', 3), ('have."', 3), ('dogging', 3), ('thirty-six', 3), ('saluted', 3), ('gaping', 3), ('foresight', 3), ('pricked', 3), ('dropping', 3), ('observation,', 3), ('hers.', 3), ('orchard', 3), ('act,', 3), ('pictures,', 3), ('etc.', 3), ('beast,', 3), ('pit', 3), ('well-to-do', 3), ('lasted', 3), ('hysterical', 3), ('mitton', 3), ('settled.', 3), ('woodley.', 3), ('broken,', 3), ('mercy.', 3), ('simon,"', 3), ('sixteen', 3), ("year's", 3), ('believe.', 3), ('mate,', 3), ('packet.', 3), ('coxon', 3), ('compress', 3), ('feather', 3), ('bitten', 3), ('fatal.', 3), ('prolonged', 3), ('bustled', 3), ('drug', 3), ('with?"', 3), ('striding', 3), ('frayed.', 3), ('church.', 3), ('wide,', 3), ("maker's", 3), ('splash', 3), ('mistaken."', 3), ('hairless', 3), ('clay,', 3), ('appear.', 3), ('what?', 3), ('profession,', 3), ('gems,', 3), ('waiter', 3), ('map.', 3), ('occasions', 3), ('"excellent.', 3), ('plumber,', 3), ('events.', 3), ('palmer', 3), ('checking', 3), ('silently', 3), ('compressed', 3), ('widened', 3), ('answered;', 3), ('county.', 3), ('rumor', 3), ('before?"', 3), ('brain.', 3), ('iv.', 3), ('cat.', 3), ('turn."', 3), ('heel,', 3), ('note-book', 3), ('advised', 3), ('device', 3), ('sits', 3), ('questioned', 3), ('vulgar', 3), ('curves', 3), ('blur', 3), ('red-moustached', 3), ('"ah', 3), ('sealed.', 3), ('rug', 3), ('rate', 3), ('trousers.', 3), ('comes,', 3), ('preference', 3), ('villa,', 3), ('graceful', 3), ('ashen', 3), ("devil's", 3), ('chart', 3), ('boulder', 3), ('wise,', 3), ('descriptions', 3), ('anticipate', 3), ('bonds,', 3), ('five,', 3), ('praise', 3), ('assistance,', 3), ('dock', 3), ('imperturbably.', 3), ('chat', 3), ('passing,', 3), ('lodged', 3), ('again?"', 3), ('fifty-guinea', 3), ('arranged,', 3), ('danger."', 3), ("barnicot's", 3), ('drawer,', 3), ('naturally,', 3), ('guided', 3), ('national', 3), ('motioned', 3), ('streatham', 3), ('mine."', 3), ('cleaned', 3), ('smiled,', 3), ('snuff,', 3), ('none,', 3), ('throughout', 3), ('shot.', 3), ('cabs', 3), ('costume', 3), ('midnight.', 3), ('puzzled,', 3), ('sense,', 3), ('elbows', 3), ('chin.', 3), ('mood,', 3), ('balanced', 3), ('peculiarities', 3), ('throbbing', 3), ("sister's,", 3), ('shilling', 3), ('them,"', 3), ('dressing', 3), ('francis', 3), ('going."', 3), ("'my", 3), ('crash', 3), ('emotions.', 3), ('pain,', 3), ('understood,', 3), ('soldier', 3), ('inspected', 3), ('holy', 3), ('loomed', 3), ('suspect?"', 3), ('workman', 3), ("week's", 3), ('largely', 3), ('opinion?"', 3), ('vi.', 3), ('ladder', 3), ('motionless.', 3), ('police-station', 3), ('care,', 3), ('clair.', 3), ('salt', 3), ('continued.', 3), ('burly', 3), ('souls.', 3), ('ask.', 3), ('cautious', 3), ('sandeford,', 3), ('mutilated', 3), ('erroneous.', 3), ('anyhow.', 3), ('queenly', 3), ('boot,', 3), ('per', 3), ('beetle', 3), ('altogether.', 3), ('oldacre.', 3), ('disconnected', 3), ('fellow;', 3), ('deck', 3), ('rider', 3), ('isa', 3), ('information,', 3), ('quarters,', 3), ('fail,', 3), ('moaning', 3), ('invisible.', 3), ('fringed', 3), ('spending', 3), ('chaff', 3), ('received.', 3), ('pinned', 3), ('injunctions', 3), ('hours.', 3), ('assert', 3), ('drunk', 3), ('shillings,', 3), ('coloured', 3), ('taken?"', 3), ('holder,"', 3), ('american,', 3), ('monday."', 3), ('broadened', 3), ('belt', 3), ('yet--and', 3), ('class.', 3), ('library,', 3), ('cut.', 3), ('floating', 3), ('language,', 3), ('extracts', 3), ('opposition', 3), ('inadequate', 3), ('earth.', 3), ('ally,', 3), ('hanged', 3), ('regards', 3), ('indulge', 3), ('(which', 3), ('"half', 3), ('hopes."', 3), ('relieve', 3), ('yes,"', 3), ('coburg', 3), ('"\'one', 3), ('steel.', 3), ('illuminated', 3), ('clapham', 3), ('womanly', 3), ('hansom."', 3), ('order.', 3), ('gang.', 3), ('desires', 3), ('unreasoning', 3), ('little,"', 3), ('meiringen.', 3), ('postmaster', 3), ('specimens', 3), ('know;', 3), ('luxurious', 3), ('surroundings', 3), ('detection', 3), ('traffic,', 3), ('obeyed', 3), ('quoted', 3), ('insensible', 3), ('inconvenience', 3), ('left."', 3), ('compliment', 3), ('drumming', 3), ('native', 3), ('angel?"', 3), ('expedition', 3), ('injure', 3), ('stale', 3), ('tonight."', 3), ('recovered.', 3), ('hatty', 3), ('exaggerated', 3), ('please!"', 3), ('pyland.', 3), ('[it', 3), ('clear,"', 3), ('affected', 3), ('miss,', 3), ('raving', 3), ('improbable', 3), ('cruelly', 3), ('natural,', 3), ('profitable', 3), ('argued', 3), ('moisture', 3), ('necessity', 3), ('nursed', 3), ('extending', 3), ('awoke', 3), ('awake,', 3), ('lens,', 3), ('conduct.', 3), ('crazy', 3), ('hideous,', 3), ('error', 3), ('alley.', 3), ('steiler', 3), ('slaney.', 3), ('hamlet', 3), ('monsieur', 3), ('mackleton', 3), ('announce', 3), ('detour', 3), ('observant', 3), ('bay', 3), ('distinctive', 3), ('followed.', 3), ('australia', 3), ('denying', 3), ('problems,', 3), ('grey,', 3), ('run."', 3), ('now!', 3), ('prelude', 3), ('late,"', 3), ('banks', 3), ('used."', 3), ('attractions', 3), ('inspect', 3), ('corresponded', 3), ('six.', 3), ('clutches', 3), ('25', 3), ('passages', 3), ('undergo', 3), ('register', 3), ('slab', 3), ('imagined,', 3), ('goes,', 3), ('"capital!', 3), ('ordnance', 3), ('symptom', 3), ('ah!', 3), ('heartily,', 3), ('supplying', 3), ('james.', 3), ('trip,', 3), ('factors', 3), ('slunk', 3), ('seriously,', 3), ('halloa,', 3), ('follows', 3), ('education,', 3), ('fall,', 3), ('treatise', 3), ('planned', 3), ('factory', 3), ('alarmed,', 3), ('smoothed', 3), ('carved', 3), ('insolent', 3), ('vibrated', 3), ('hall,"', 3), ('heath.', 3), ('accurate', 3), ('guilty,', 3), ('armchair.', 3), ('study."', 3), ('henry."', 3), ('flushing', 3), ('forbes.', 3), ('weighted', 3), ('required', 3), ('blazed', 3), ("'it's", 3), ('killed,', 3), ('superior', 3), ('breakfast."', 3), ('villagers', 3), ('eagerly.', 3), ('anything."', 3), ('eaves.', 3), ('demonstrated', 3), ('monotonous', 3), ('barrymores', 3), ('stagnant', 3), ('half-opened', 3), ('"\'can', 3), ('property.', 3), ('route', 3), ('deceptive', 3), ('origin', 3), ('highroad,', 3), ('chuckled.', 3), ('ill-usage', 3), ('downward', 3), ('polished', 3), ('looked,', 3), ('withdrawn', 3), ('slaney', 3), ('extra', 3), ('particular."', 3), ('color,', 3), ('pet', 3), ('spies', 3), ('recollect', 3), ('relaxed', 3), ('beg,', 3), ('race,', 3), ('hampshire', 3), ('apartment', 3), ('outside."', 3), ('gaze', 3), ('pleasure,', 3), ('implicit', 3), ('widow', 3), ('destruction.', 3), ('"except', 3), ('thing."', 3), ('saucer', 3), ('exercise.', 3), ('"\'why', 3), ('gruff', 3), ('follow.', 3), ('rustic', 3), ('jaws', 3), ('pew.', 3), ('shimmering', 3), ('frank,', 3), ('wave', 3), ('celebrated', 3), ('lesson', 3), ('us;', 3), ('confessed,', 3), ('finish', 3), ('preoccupied', 3), ('are."', 3), ('woking.', 3), ('boone,', 3), ('imitate', 3), ('obliterated', 3), ('transfixed', 3), ('inspector,"', 3), ('cock', 3), ("majesty's", 3), ('supper,', 3), ('indoors', 3), ('procured', 3), ('blast', 3), ('outburst', 3), ('seldom,', 3), ('hesitate', 3), ('scheming', 3), ('patting', 3), ('friday,', 3), ('slim,', 3), ('sardonic', 3), ('maid.', 3), ('breathe', 3), ('dogs', 3), ('secrecy,', 3), ('clung', 3), ('delight.', 3), ('pursue', 3), ('overton,', 3), ('regarded', 3), ('soames.', 3), ('announcement', 3), ('hole,', 3), ('culprit', 3), ('"lord', 3), ('remains,', 3), ('intensely', 3), ('mistake.', 3), ('footmarks.', 3), ('oak,', 3), ('complex.', 3), ('despairing', 3), ('"\'oh,\'', 3), ('camp', 3), ('counties', 3), ("work?'", 3), ('lap,', 3), ('vicious', 3), ('apparent', 3), ('unkempt', 3), ('steam', 3), ('trainer,', 3), ('mistaking', 3), ('afternoon."', 3), ('"holmes,', 3), ('penal', 3), ('chiming', 3), ('investigations.', 3), ('screaming,', 3), ('wily', 3), ("heidegger's", 3), ('consciousness.', 3), ('tracey.', 3), ('decline', 3), ('propped', 3), ('first,"', 3), ('disclosed', 3), ("mortimer's", 3), ('presently,', 3), ('freed', 3), ('maiden,', 3), ('effects.', 3), ('constabulary', 3), ('world,"', 3), ('hurriedly,', 3), ('amuse', 3), ('basket-chair.', 3), ('complain', 3), ('choosing', 3), ('frozen', 3), ('mentioned,', 3), ('gratitude', 3), ('jump,', 3), ('smudge', 3), ('tears.', 3), ('delirious', 3), ('bolted', 3), ('wise', 3), ('narrowly', 3), ('cards.', 3), ('tavistock,', 3), ('begging', 3), ('alone?"', 3), ('tale', 3), ('prearranged', 3), ('boomed', 3), ('device,', 3), ('mind."', 3), ('shape.', 3), ('ruffled', 3), ('written,', 3), ('successive', 3), ('bushy', 3), ('kensington.', 3), ('intentions', 3), ("mccarthy's", 3), ('began.', 3), ('tight', 3), ('lonely,', 3), ('rascal', 3), ('annoyance', 3), ('rate,', 3), ('are?"', 3), ('whistled', 3), ('prefers', 3), ('door;', 3), ('enables', 3), ('cigars,', 3), ('paralyzed', 3), ('composed,', 3), ('witnessed', 3), ('stupid', 3), ('dollars', 3), ('sideways', 3), ('disease.', 3), ('disregarding', 3), ('sandy', 3), ('accompanying', 3), ('conclusions.', 3), ('stupidity', 3), ('shrugging', 3), ('sitting,', 3), ('carey.', 3), ('twilight', 3), ('am,', 3), ('professor,', 3), ('charge.', 3), ('engagement,', 3), ('stress', 3), ('them;', 3), ('emotion,', 3), ('blackguard', 3), ('brisk,', 3), ('rabbit', 3), ('stride.', 3), ('deep.', 3), ('season.', 3), ('something."', 3), ('ours,', 3), ("'which", 3), ('disturbed,', 3), ('little.', 3), ('immersed', 3), ('moriarty.', 3), ('dreams', 3), ('strained', 3), ('spy', 3), ('confessing', 3), ('described,', 3), ('base', 3), ('isolated', 3), ('kind,"', 3), ('knee,', 3), ('julia', 3), ('drama', 3), ('survey', 3), ('perceive.', 3), ('bag.', 3), ('crouched.', 3), ('friend,"', 3), ('chairman', 3), ('cloth.', 3), ('lucy', 3), ('albert', 3), ('stick.', 3), ('laid,', 3), ('disgrace.', 3), ('sleepless', 3), ('far.', 3), ('shame', 3), ('instituted', 3), ('walked,', 3), ('hastily', 3), ('wizened', 3), ('pledged', 3), ('chairs,', 3), ('marker,', 3), ('moor?', 3), ('rejoin', 3), ('whimsical', 3), ('destruction', 3), ('mistress,', 3), ('drunk,', 3), ('jaw,', 3), ('arise', 3), ('clearly,', 3), ('armstrong.', 3), ('cautiously', 3), ('stall', 3), ('wasted,', 3), ('county,', 3), ('road."', 3), ('trial.', 3), ('actors', 3), ('bored', 3), ('suddenly.', 3), ('here!"', 3), ('picturesque', 3), ('devilish', 3), ('fifty,', 3), ('borrowed', 3), ('ruin,', 3), ('amber.', 3), ('developments,', 3), ('practise', 3), ('moping', 3), ('male', 3), ('urgency', 3), ('fifth', 3), ('consideration,', 3), ('walls.', 3), ('refers', 3), ('admiring', 3), ('"upon', 3), ('perform', 3), ('muskets', 3), ('stormy', 3), ('ankles', 3), ('designs', 3), ('ankle', 3), ('wicket-gate', 3), ('visit."', 3), ('scrap', 3), ('sawdust', 3), ('i,"', 3), ('field,', 3), ('recognizing', 3), ('kindly,', 3), ('"indeed.', 3), ('thrilled', 3), ('emotions,', 3), ('young.', 3), ('fidgeted', 3), ('midnight,', 3), ('decanter', 3), ('straker,', 3), ('blackheath,', 3), ('boone', 3), ('timid', 3), ('telescope,', 3), ('winced', 3), ('mitton,', 3), ('indifferent', 3), ('d', 3), ('glossy', 3), ('wheeled', 3), ('swelled', 3), ('shilling.', 3), ('detective?"', 3), ('disappearance,', 3), ('punishment', 3), ('milk,', 3), ('thirty-seven', 3), ('tint,', 3), ('eh?', 3), ('sure."', 3), ('bedroom."', 3), ('naturalist.', 3), ('regain', 3), ('blinking', 3), ('plush', 3), ('driver,', 3), ('companions', 3), ('duty.', 3), ('"oh!', 3), ('final,"', 3), ('wash', 3), ('station."', 3), ('pause,', 3), ('endure', 3), ('tor.', 3), ('corroborate', 3), ("years'", 3), ('middle-sized', 3), ('securities.', 3), ('hudson.', 3), ('length,', 3), ('"\'"what', 3), ('quest.', 3), ('element', 3), ('fernworthy', 3), ('aversion', 3), ('randall', 3), ('shop.', 3), ('cartwright.', 3), ('typewriting', 3), ('indian,', 3), ('"certainly.', 3), ('tracing', 3), ('commissioned', 3), ('tonight,', 3), ("inspector's", 3), ('adventures.', 3), ('cab?"', 3), ('good-morning."', 3), ('searched.', 3), ('wilful', 3), ('lank', 3), ('"does', 3), ('necessary.', 3), ('cab."', 3), ('starving', 3), ('safes', 3), ('exercise,', 3), ('peace.', 3), ('footman', 3), ('bust.', 3), ('admit,', 3), ('sixty', 3), ('decide.', 3), ('happily', 3), ('rent', 3), ('admire', 3), ('blow,', 3), ('exquisite', 3), ('ceiling,', 3), ('gross', 3), ('color', 3), ('literary', 3), ('logbooks', 3), ('continuous', 3), ('measure.', 3), ('cocaine', 3), ('something.', 3), ('episodes', 3), ('bonnet', 3), ('mischief,', 3), ('moran.', 3), ('knuckles', 3), ('good-bye', 3), ('captain,', 3), ('cambridge,', 3), ('barque', 3), ('hopeless,', 3), ('egg', 3), ('countries', 3), ('poisonous', 3), ('grass?"', 3), ('drift', 3), ('fulfilled.', 3), ('glint', 3), ('services,', 3), ('specially', 3), ('mission.', 3), ('goodness,', 3), ('allusions', 3), ('carefully,', 3), ('invented', 3), ('liberty.', 3), ('inevitable', 3), ('oakshott', 3), ('enclosure,', 3), ('bent,', 3), ('writing-table.', 3), ('knowledge,', 3), ('australia,', 3), ('hour,"', 3), ('standstill.', 3), ('correspondence', 3), ('blame.', 3), ('swarthy', 3), ('shouted.', 3), ('stopped,', 3), ('dependent', 3), ('stones,', 3), ('barren', 3), ('chap,', 3), ('hills.', 3), ('sleeper.', 3), ('hotels', 3), ('read:', 3), ('whatever.', 3), ('impatience,', 3), ('practice."', 3), ('wary', 3), ('difficulties,', 3), ('horrid', 3), ('wrist.', 3), ('most.', 3), ('conventional', 3), ('williamson,', 3), ('xi.', 3), ('adding', 3), ('fireplace.', 3), ('endless', 3), ('oak.', 3), ('dregs', 3), ('morning-room.', 3), ('sheaf', 3), ('bust,', 3), ('pinnacle', 3), ('"why,"', 3), ('prosaic', 3), ('slippers', 3), ('crowder,', 3), ('establishing', 3), ('manly', 3), ('amusing', 3), ('drawn,', 3), ('patent', 3), ('groom,', 3), ('stricken', 3), ('reasoned', 3), ('relative,', 3), ('fourteen', 3), ('soon,', 3), ('way!', 3), ('brace', 3), ('issues', 3), ('interesting,"', 3), ('doing.', 3), ('emotions', 3), ('man?', 3), ('honour.', 3), ('be?"', 3), ('2.', 3), ('hopes.', 3), ('any."', 3), ('services', 3), ('faces,', 3), ('haze', 3), ('tugged', 3), ('cloak,', 3), ('impenetrable', 3), ('cheek', 3), ('comical', 3), ('volumes,', 3), ('time!', 3), ('"lady', 3), ("brunton's", 3), ("'by", 3), ('veins', 3), ('holds', 3), ('spring,', 3), ('ix.', 3), ('taper', 3), ('clink', 3), ('pistols', 3), ('sweeping', 3), ('pallor', 3), ('knocked.', 3), ('duty,', 3), ('justice.', 3), ('interested.', 3), ('smallest', 3), ('intrusted', 3), ('grange,', 3), ('trodden', 3), ('ryder,', 3), ('draws', 3), ('windibank,"', 3), ('dwelling.', 3), ('blind."', 3), ('influence,', 3), ('deceased,', 3), ('possible,"', 3), ('wounded,', 3), ('experts', 3), ('resolute', 3), ('lanes', 3), ('papers?', 3), ('remembered,', 3), ("man.'", 3), ('farnham,', 3), ('involved.', 3), ('to."', 3), ('tires', 3), ('blow.', 3), ('refer', 3), ('incessant', 3), ('ross.', 3), ('lad.', 3), ('"both', 3), ('father?', 3), ('worrying', 3), ('ecstasy', 3), ('abominable', 3), ("well,'", 3), ('lascar,', 3), ('justified,"', 3), ('south.', 3), ('glimmering', 2), ('tattooed', 2), ('fertile', 2), ('ghosts', 2), ('ere', 2), ('object.', 2), ('body?', 2), ('foggy', 2), ('agreed,', 2), ('blandly,', 2), ('railings', 2), ('registered', 2), ('police?"', 2), ('boxing', 2), ('area', 2), ('history."', 2), ('contrast.', 2), ('then--"', 2), ('mcfarlane."', 2), ('formal', 2), ('trace,', 2), ('imprisoned', 2), ('second-floor', 2), ('projecting.', 2), ('although,', 2), ('ill.', 2), ('baggy', 2), ('commission,', 2), ('league,', 2), ('intruded', 2), ('charles?"', 2), ('dissuading', 2), ('broad-shouldered', 2), ('incomplete', 2), ('fortunes.', 2), ('half,', 2), ('needs.', 2), ('thinned', 2), ('sherry', 2), ('remember."', 2), ('tumble-down', 2), ('owned', 2), ('tallow', 2), ('please."', 2), ('paper?"', 2), ('proved.', 2), ('trevelyan,"', 2), ('distrusted', 2), ('substantial', 2), ('herself.', 2), ('finesse', 2), ('117,', 2), ('looks,', 2), ('sleepers', 2), ('opposite,', 2), ('resources', 2), ('crest', 2), ('feelings.', 2), ('indiscretion', 2), ('influences', 2), ('fright.', 2), ('imprudently', 2), ('instant,"', 2), ("argument's", 2), ("name?'", 2), ('he."', 2), ("from?'", 2), ('voice."', 2), ('prosecute', 2), ('characters', 2), ('gates,', 2), ('granting', 2), ('formerly,', 2), ('things,"', 2), ('stem', 2), ('either.', 2), ('wholesale', 2), ('enemy,', 2), ('surgery.', 2), ('hot-headed', 2), ('him;', 2), ('occupation', 2), ('grotesquely', 2), ('grays', 2), ('ground-floor,', 2), ('highway', 2), ('heaven!"', 2), ('sharpness', 2), ('bet', 2), ('unlocked.', 2), ('precursor', 2), ('however,"', 2), ('broker,', 2), ('footmen,', 2), ('france?"', 2), ('detach', 2), ('absolved', 2), ('parents,', 2), ('n,', 2), ('bone.', 2), ('"surely,"', 2), ('refinement', 2), ('nod', 2), ('tropical', 2), ('successfully', 2), ('pocketbook.', 2), ('battle', 2), ('fury.', 2), ('training."', 2), ('stile,', 2), ('monogram,', 2), ('senseless,', 2), ('demonstration', 2), ('avoid.', 2), ('fixe', 2), ('billiard-room,', 2), ('misfortune,', 2), ('warmth.', 2), ('remarks.', 2), ('grandfather', 2), ('wait."', 2), ('wisdom', 2), ('bars,', 2), ('publicity', 2), ('cheerfully', 2), ('buying', 2), ('swallowed', 2), ('plaster.', 2), ('directed,', 2), ('reflection', 2), ('fell,', 2), ('fed', 2), ('camp.', 2), ('kilburn.', 2), ('disguise.', 2), ('autumnal', 2), ('crisp,', 2), ('phase', 2), ('pits', 2), ('crimean', 2), ('grimpen.', 2), ('matted', 2), ('equinoctial', 2), ('garments', 2), ('meat', 2), ('gilchrist', 2), ('involve', 2), ('slave', 2), ('aspect.', 2), ('unmistakable', 2), ('30,000', 2), ('drooped', 2), ('prohibition', 2), ('farnham', 2), ('neighborhood', 2), ('treble', 2), ('trigger.', 2), ('accidental', 2), ('provision', 2), ('yards.', 2), ('attacks."', 2), ('afghan', 2), ('faintly', 2), ('light?"', 2), ('"under', 2), ('worlds.', 2), ('chuckle', 2), ('mark.', 2), ('obstinacy.', 2), ('affairs."', 2), ('party,', 2), ('jeremy', 2), ('theory,"', 2), ('cravat.', 2), ('purse', 2), ('seven-thirty', 2), ('scoundrel!"', 2), ('pondicherry,', 2), ('barked', 2), ('found?"', 2), ('sad,', 2), ('details,"', 2), ('gloomily', 2), ('smearing', 2), ('presumably,', 2), ('fowls', 2), ('confession.', 2), ('frame,', 2), ('threatens', 2), ('wilson?"', 2), ('surveyed', 2), ('reverse', 2), ('fee,', 2), ('obstacle', 2), ('hiss', 2), ('vexation', 2), ('barrow.', 2), ('lowered', 2), ('edge,', 2), ('saltire,', 2), ('jove!"', 2), ('george!', 2), ('"capital!"', 2), ('termination,', 2), ("we're", 2), ('tiptoe,', 2), ('tracked', 2), ('doran.', 2), ('ash,', 2), ('eyes."', 2), ('pity!', 2), ("'you've", 2), ('supernatural?"', 2), ('bodies', 2), ('impending', 2), ('uninteresting.', 2), ('frequented', 2), ('quarrelling', 2), ('resolution.', 2), ('gravity', 2), ('swarthy,', 2), ('hullo,', 2), ('visible,', 2), ('landing.', 2), ('doubt;', 2), ('stranded', 2), ('hinges', 2), ('gardener', 2), ('thames.', 2), ('snatches', 2), ('swears', 2), ('training.', 2), ('improbable,', 2), ('"who?"', 2), ('salary,', 2), ('irreparable', 2), ('departmental', 2), ('wardrobe', 2), ('wisely,"', 2), ('humour,', 2), ('hampshire.', 2), ('hoping', 2), ('periods', 2), ('factor,', 2), ('poise', 2), ('proof.', 2), ('bothered', 2), ('does,', 2), ("men's", 2), ('instruments', 2), ('deductive', 2), ('marble.', 2), ('how,', 2), ('offensive', 2), ('butt-end', 2), ('pause.', 2), ('brightly,', 2), ('free.', 2), ('bluish', 2), ('plunges', 2), ('effected.', 2), ('gaze.', 2), ('windibank.', 2), ('tour', 2), ('comfort', 2), ('vice', 2), ('dawn', 2), ('sovs', 2), ('cord,', 2), ('munsters', 2), ('family?"', 2), ('"halloa,', 2), ('remark,', 2), ('loft', 2), ('indignation.', 2), ('cooperation', 2), ('better."', 2), ('handing', 2), ('deserves', 2), ('ease.', 2), ('task,', 2), ('unconscious,', 2), ("for?'", 2), ('gables', 2), ('deep-lined,', 2), ('watch-chain', 2), ('bank-book', 2), ('excited.', 2), ('disclosing', 2), ('norwegian', 2), ('before?', 2), ('arctic', 2), ('remained,', 2), ('thickening', 2), ('invitation."', 2), ('season', 2), ("hour?'", 2), ('timber-yard', 2), ('revealing', 2), ('ability.', 2), ('persuasion', 2), ('exhaustion.', 2), ('conjunction', 2), ('day?', 2), ("vitus's", 2), ('sweeter', 2), ('trial', 2), ('today,', 2), ('solemnly', 2), ('plants', 2), ('sins', 2), ('head."', 2), ('imminent', 2), ('scintillating', 2), ('logic', 2), ('lets', 2), ('helper', 2), ('sufficient,', 2), ('dreadful,', 2), ('farcical', 2), ('fads', 2), ('exceeding', 2), ('hypothesis,', 2), ('least,"', 2), ('rumpled', 2), ('vacancies', 2), ('clothing', 2), ("'twelve,'", 2), ('maid."', 2), ('supra-orbital', 2), ('bloody', 2), ('rather."', 2), ('prompting', 2), ('agitated.', 2), ('bargain', 2), ("jack!'", 2), ('1894', 2), ('suite', 2), ('wear,', 2), ('hotel?"', 2), ('resist', 2), ('clubbed', 2), ('luggage.', 2), ('write,', 2), ('petrified', 2), ('worked,', 2), ('legs.', 2), ('gifts,', 2), ('breaks', 2), ('secrets.', 2), ('neighboring', 2), ('slung', 2), ('encouraging.', 2), ('lie!"', 2), ('generosity."', 2), ('"\'"you', 2), ('crocker.', 2), ('anna,"', 2), ('symptoms', 2), ('settled,', 2), ('good-afternoon,', 2), ('placid', 2), ('ordeal', 2), ('more?', 2), ('too?"', 2), ('plunder', 2), ('queen', 2), ('silhouette', 2), ('chairs.', 2), ('roadway', 2), ('traitor', 2), ('kirwan,', 2), ('disregarded', 2), ('swiftly.', 2), ('guide.', 2), ('stronger.', 2), ('savage,', 2), ('parker', 2), ('italy', 2), ('"ten', 2), ('disgust', 2), ('kidnap', 2), ('was!', 2), ('injudicious', 2), ('design.', 2), ('touch,', 2), ('wanted,', 2), ('obtained.', 2), ('lazily', 2), ("other,'", 2), ('everything."', 2), ('scissors,', 2), ('rugged', 2), ('weapons.', 2), ('description.', 2), ('notting', 2), ("e's", 2), ('self', 2), ('wilderness,', 2), ('speck', 2), ('address."', 2), ('sprinkled', 2), ('bronze', 2), ('meditative', 2), ('note."', 2), ('bicycles', 2), ('misfortune."', 2), ('ear', 2), ('deadliest', 2), ('intruding', 2), ('gardener,', 2), ('complimented', 2), ('costume.', 2), ("engineer's", 2), ('devoy,', 2), ('mutiny,', 2), ('fancies,', 2), ('undoubted', 2), ('publican', 2), ('words:', 2), ('inexplicable.', 2), ('racing', 2), ('angry.', 2), ('extracted', 2), ('rollers,', 2), ('channel.', 2), ('lose.', 2), ('barmaid', 2), ('cushions,', 2), ('goose."', 2), ('handy', 2), ('again!', 2), ('statesman,', 2), ('uncomfortable', 2), ('watson,"--he', 2), ("'varsity", 2), ('wedged', 2), ('exertions', 2), ('stripes.', 2), ('sufficed', 2), ('good-fortune,', 2), ('end?"', 2), ('reversed', 2), ('be,"', 2), ('settee', 2), ('anyhow,"', 2), ('actions.', 2), ('nights,', 2), ('sixty-four', 2), ('perfect.', 2), ('concealing', 2), ('abilities.', 2), ('cycle,', 2), ('catholic', 2), ("bottom.'", 2), ('posting', 2), ('southerly', 2), ('yourselves,', 2), ('wood-pile', 2), ('beckoned', 2), ("there.'", 2), ('gradually,', 2), ('vehicle,', 2), ('hoax', 2), ('extend', 2), ('mare', 2), ('peeping', 2), ('along!"', 2), ('ploughed', 2), ('road,"', 2), ('tor,', 2), ('division,', 2), ("'j.h.n.'", 2), ('tracey."', 2), ('apartment.', 2), ('run,', 2), ('flapped', 2), ('big,', 2), ('suggestive,"', 2), ('shutter,', 2), ('tidy', 2), ('landmarks', 2), ('dismay.', 2), ('obvious,"', 2), ('museum.', 2), ('comment,', 2), ('staircase', 2), ('nostrils', 2), ('lining.', 2), ('beard!', 2), ('vulnerable', 2), ('arrangement', 2), ('card.', 2), ("feet.'", 2), ('purchase', 2), ('cardinal', 2), ('believe,"', 2), ('actions,', 2), ('twenty,', 2), ('often,', 2), ('enjoyed', 2), ('ajar.', 2), ('stage,', 2), ('6d.,', 2), ('generations,', 2), ('increasing', 2), ('number,', 2), ("children's", 2), ('jotted', 2), ('obstinate', 2), ('watch-chain.', 2), ('unspoken', 2), ('"halloa!"', 2), ('flourished', 2), ('dog.', 2), ('material.', 2), ('screening', 2), ('shoes.', 2), ('notice,', 2), ('wits,', 2), ('lines.', 2), ('decide', 2), ('"hold', 2), ('probed', 2), ('threadneedle', 2), ('military', 2), ('union', 2), ('take."', 2), ('after?"', 2), ('hound?"', 2), ('wages', 2), ('sill,', 2), ('do!', 2), ('record.', 2), ('colonies.', 2), ('obliging', 2), ('waste-paper', 2), ('shock.', 2), ('surely,"', 2), ('invited', 2), ('these?"', 2), ('laurel', 2), ('chosen,', 2), ('"\'yes.\'', 2), ('gems;', 2), ('assume', 2), ('beds', 2), ('cadaverous', 2), ('refuses', 2), ('theresa,', 2), ('sheep.', 2), ("'tween-decks", 2), ('endeavoring', 2), ('ridge', 2), ('clasping', 2), ('131', 2), ('straight.', 2), ('officer,', 2), ('erected', 2), ('endowed', 2), ('shave', 2), ('felony', 2), ('casually', 2), ('week."', 2), ('departed,', 2), ("doran's", 2), ('syndicate.', 2), ('april,', 2), ('mumbling', 2), ('evident.', 2), ('anatomy', 2), ('{sic}', 2), ('gnarled', 2), ('coughing.', 2), ('undoing', 2), ('"once', 2), ('"come,"', 2), ('generous', 2), ('ticket', 2), ('differences', 2), ('recovered."', 2), ('conceive,', 2), ('spirited', 2), ('wisest', 2), ('ungrateful', 2), ('mate.', 2), ('s,', 2), ('ruffians', 2), ("devine's", 2), ('themselves."', 2), ('blackmail', 2), ('perilous', 2), ('illustrate', 2), ('hilton,', 2), ('"good-day,', 2), ('ready,', 2), ('"baskerville', 2), ('"we\'re', 2), ('murderer."', 2), ('loose-lipped', 2), ('humming', 2), ('"\'that\'s', 2), ('flurried', 2), ('guinea', 2), ('assistance."', 2), ('custom.', 2), ('observations.', 2), ('lady?"', 2), ('predominates', 2), ('fanlight', 2), ('able-bodied', 2), ('discoloured.', 2), ('lemon,', 2), ('trifle,', 2), ("turner's", 2), ('fiendish', 2), ('furnished.', 2), ('quadrangle,', 2), ('possible?"', 2), ('despaired', 2), ('courts', 2), ('abandons', 2), ('both,', 2), ('pond?"', 2), ('signs,', 2), ('aim', 2), ('exposing', 2), ('prefaced', 2), ('returning,', 2), ('cattle', 2), ('elicit', 2), ('man!', 2), ('plainly,', 2), ('frock-coat.', 2), ('dank', 2), ('arrest?"', 2), ('ship,', 2), ('protection', 2), ("salary.'", 2), ('(for', 2), ('responsible.', 2), ('forbes', 2), ('student.', 2), ('play."', 2), ('ceremony', 2), ('air."', 2), ('scarlet,"', 2), ('searcher.', 2), ('publish', 2), ('skylight.', 2), ('relate.', 2), ('dummy,', 2), ('hotel,"', 2), ('alternate', 2), ('men;', 2), ('calculation.', 2), ('flesh-coloured', 2), ('crash,', 2), ('grimly.', 2), ('transpired,', 2), ('attire,', 2), ('watchman', 2), ('gone!"', 2), ('extensive', 2), ('talks', 2), ('prematurely', 2), ('insolence', 2), ('(the', 2), ('fare,', 2), ('surrounds', 2), ('condescend', 2), ('blackness', 2), ('departure,', 2), ('jury.', 2), ('hath', 2), ('believes', 2), ('dundee,', 2), ("milliner's", 2), ('bench.', 2), ('sobbing,', 2), ('exits', 2), ('gasped,', 2), ('called,', 2), ('flown', 2), ('snapped,', 2), ('private,', 2), ('prompted', 2), ('settee.', 2), ('tied,', 2), ('property."', 2), ('advertising', 2), ('swimming', 2), ('stoper', 2), ('waterloo."', 2), ('"really!', 2), ('logician', 2), ('demands.', 2), ('resemblance', 2), ('quick.', 2), ('elizabethan', 2), ('red-faced,', 2), ('tattered', 2), ('oaks,', 2), ('latticed', 2), ('commonplaces', 2), ("'quarter'", 2), ('fastening', 2), ('me--you', 2), ('cuff', 2), ('assembled', 2), ('dance', 2), ('blandest', 2), ('thin-lipped', 2), ('presentiment', 2), ('exultation,', 2), ('alternately', 2), ('pacific', 2), ('testimonials,', 2), ('screams', 2), ('words."', 2), ('arbitrary', 2), ('implicating', 2), ('conjurer', 2), ('drinking', 2), ('pips,', 2), ('quarter.', 2), ('acceptance', 2), ('summoned.', 2), ('times."', 2), ('breakfast-table', 2), ('"perfectly."', 2), ("star,'", 2), ('shabby', 2), ('pea-jacket', 2), ('partnership', 2), ('docket', 2), ('generation.', 2), ('moor-gate?"', 2), ('beam', 2), ('"where?"', 2), ('thanks.', 2), ('policeman,', 2), ('drama,', 2), ('bear.', 2), ('mysteries.', 2), ('india-rubber', 2), ('curtains,', 2), ('conscience.', 2), ('glory', 2), ('matter,"', 2), ('greasy', 2), ('answer,"', 2), ('"possibly', 2), ('linguist,', 2), ('improvement', 2), ('self-defence,', 2), ('grievous', 2), ('heiress', 2), ('princetown', 2), ('willed', 2), ('helen', 2), ('resume', 2), ('gaunt,', 2), ('horse,"', 2), ('secluded', 2), ('access', 2), ('narrowed', 2), ('boulders.', 2), ('university,', 2), ('never,', 2), ('sends', 2), ('barrymores.', 2), ('upturned', 2), ('smoothing', 2), ('deductions.', 2), ('jungle', 2), ('sorely', 2), ('retires', 2), ('coffee-cup', 2), ('whirl', 2), ('administration', 2), ('watches', 2), ('detective!', 2), ('writing?"', 2), ('attic,', 2), ('witness."', 2), ('emergency.', 2), ('results."', 2), ('invoke', 2), ('querulous', 2), ('kent,', 2), ('flourishing', 2), ('coarse,', 2), ('sadly', 2), ('hard-headed', 2), ('contents.', 2), ('sat,', 2), ('stalls', 2), ('whether,', 2), ('violent,', 2), ('"i\'d', 2), ('menacing,', 2), ('dead,"', 2), ('blend', 2), ('easy-chair', 2), ('wheel', 2), ('moor-gate', 2), ('shoots', 2), ('erred,', 2), ('wearing.', 2), ('"sorry', 2), ('enemy?"', 2), ('landscape,', 2), ('thrusting', 2), ('robberies', 2), ('beggarly', 2), ('mcfarlane?"', 2), ('amends', 2), ('adjusted', 2), ('swathed', 2), ("world.'", 2), ('sinewy', 2), ('suddenness', 2), ('guarantee', 2), ('freedom,', 2), ('gorse,', 2), ('lurks', 2), ('bertillon', 2), ('out!', 2), ('common,', 2), ('waking', 2), ('inquiry."', 2), ('commissionnaire,', 2), ('blows,', 2), ('reach."', 2), ('registry', 2), ('rear', 2), ('antics', 2), ('discussion.', 2), ('anxiously', 2), ('constraint', 2), ('hobby.', 2), ('befits', 2), ('sounded,', 2), ('paris.', 2), ('clear?', 2), ('groaned.', 2), ('selfishness', 2), ('have,"', 2), ('granted,', 2), ('brick,', 2), ('claiming', 2), ('scholarship', 2), ('"\'right', 2), ('roads.', 2), ('held,', 2), ('leave.', 2), ('umbrella', 2), ('footfall', 2), ('consulting-room.', 2), ('total', 2), ('ultimate', 2), ('resented', 2), ('time--a', 2), ('price.', 2), ('profoundly', 2), ('noiseless', 2), ('dabbled', 2), ('recognition.', 2), ('jest', 2), ('energy."', 2), ('danced', 2), ('hang,', 2), ('"entirely."', 2), ('snarled,', 2), ('perplexed', 2), ('whim,', 2), ('muttering', 2), ('tales."', 2), ('neill', 2), ('unofficial', 2), ('constantly', 2), ('stillness,', 2), ('loosened', 2), ('overlaid', 2), ('underground', 2), ('evenings', 2), ('door-step.', 2), ('houses.', 2), ('brown.', 2), ('cent.', 2), ('proofs."', 2), ('tonight', 2), ('deep-set,', 2), ('"listen', 2), ('sandwiched', 2), ("heh?'", 2), ('foulmire.', 2), ('nothing;', 2), ('alpha,', 2), ('classical', 2), ('grieve', 2), ('possess,', 2), ('embers.', 2), ('changing', 2), ('dwellings.', 2), ('hound!"', 2), ('cast-off', 2), ('half-human', 2), ('fortunes,', 2), ('footing', 2), ('stoner,"', 2), ('mould,', 2), ('rough,', 2), ('lady?', 2), ('flowing', 2), ('remarkable-looking', 2), ('instance.', 2), ('blaze."', 2), ('gravel-drive,', 2), ('forth.', 2), ('goose.', 2), ('illegal', 2), ('tramp,', 2), ('lodge-keeper,', 2), ('high-nosed,', 2), ('son;', 2), ("matters.'", 2), ('"watson,"', 2), ('releasing', 2), ('searched,', 2), ('tins', 2), ('countenance', 2), ('gently.', 2), ('earnestness.', 2), ('cunning,', 2), ('articles.', 2), ('hot."', 2), ("sir!'", 2), ('guide,', 2), ('madman', 2), ('excursion', 2), ("doctor,'", 2), ('sheath', 2), ('night--it', 2), ('mad!"', 2), ('bold,', 2), ('sentinel', 2), ('roar,', 2), ('workmanlike', 2), ('months."', 2), ('repute', 2), ('elms,', 2), ('hearts,', 2), ('cottages', 2), ('overbearing', 2), ('confidences.', 2), ('in?', 2), ('harness', 2), ('coronet.', 2), ('crate,', 2), ('politicians', 2), ('slouched', 2), ('police-station.', 2), ('trunk', 2), ('odour', 2), ('tender', 2), ('4.', 2), ('tricks,', 2), ('opponent.', 2), ('sinner', 2), ('certainly."', 2), ('tape', 2), ('despatch-box."', 2), ('outskirts', 2), ('cushions', 2), ('experiences.', 2), ('attempted,', 2), ('6.', 2), ('"\'precisely', 2), ('costs', 2), ('ras,', 2), ('liked,', 2), ('fellows,', 2), ('robust', 2), ('buttoning', 2), ('premier.', 2), ('surest', 2), ('get."', 2), ('lurk', 2), ('disturbance,', 2), ('sound?"', 2), ('chiswick', 2), ('recurred', 2), ('recapitulate', 2), ('attired', 2), ('though.', 2), ('variety', 2), ('trial,', 2), ('stool', 2), ('becher', 2), ('string,', 2), ("'some", 2), ('was,"', 2), ('leagues', 2), ('beckoning', 2), ('busts.', 2), ('trickled', 2), ('sticking-plaster', 2), ('heed', 2), ('eleven.', 2), ('quickened', 2), ('bell-pull.', 2), ('fist', 2), ('performer', 2), ('tavistock."', 2), ('fever.', 2), ('poisoned', 2), ('thief.', 2), ('bother', 2), ('define', 2), ('province."', 2), ('definite."', 2), ('confederacy,', 2), ('melas.', 2), ('greatly', 2), ('gentleman,"', 2), ('cigarettes.', 2), ('calm,', 2), ('lots', 2), ('defined', 2), ('chaffed', 2), ('intentions.', 2), ('inserted', 2), ('cataleptic', 2), ('selden.', 2), ('diadem', 2), ('solved,', 2), ('blond', 2), ('respects', 2), ('ascertain,', 2), ('surrey,', 2), ('brandy,', 2), ('deuce', 2), ('upshot', 2), ('chiselhurst', 2), ('match."', 2), ('curly-haired', 2), ('studied', 2), ('combined', 2), ('"\'from', 2), ('fee', 2), ('chamber.', 2), ('unravelled', 2), ('poised', 2), ('heavily,', 2), ('uninteresting', 2), ('declaring', 2), ('acton,', 2), ('fallen.', 2), ('gains', 2), ('stout,', 2), ('occasion,"', 2), ('appreciation', 2), ('license,', 2), ('vehicle', 2), ('clears', 2), ('m.r.c.s.,', 2), ('morass.', 2), ('spoiled', 2), ('good."', 2), ('ring?"', 2), ("luke's.", 2), ("physician's", 2), ('vacation.', 2), ('wayward,', 2), ('cheer', 2), ('off?"', 2), ('sale', 2), ('demon,', 2), ('cure.', 2), ("geese?'", 2), ('locking', 2), ('gordon', 2), ('arched', 2), ('cries,', 2), ('gentlemanly', 2), ('nightfall,', 2), ('extraordinarily', 2), ('country-side,', 2), ('hours."', 2), ('hampstead', 2), ('sons.', 2), ('misgivings', 2), ("'elsie.'", 2), ('comfortable-looking', 2), ('theresa.', 2), ('harrison,"', 2), ('tut!', 2), ('dressing-table', 2), ('amply', 2), ('dragging', 2), ('insufficient', 2), ('paths,', 2), ('possessing', 2), ('simple."', 2), ('teeth.', 2), ('mackleton,', 2), ('character."', 2), ('walked.', 2), ('virtues.', 2), ('cornelius', 2), ('grandeur', 2), ('"\'look', 2), ('captive,', 2), ('wales.', 2), ('duel', 2), ('interval', 2), ('sleeping,', 2), ('doubt,"', 2), ('fire."', 2), ('take,', 2), ('mine;', 2), ('overhanging', 2), ('ferret-like', 2), ('luminous', 2), ('"didn\'t', 2), ('thorneycroft', 2), ('unmitigated', 2), ('cause.', 2), ('harmless', 2), ('incident?"', 2), ('nightshirt', 2), ('jane', 2), ('exhibited', 2), ('loudly.', 2), ('spurt', 2), ('writing-desk,', 2), ('"\'surely', 2), ('force."', 2), ('plainer', 2), ('success,', 2), ('easy-going', 2), ('supple', 2), ('cause."', 2), ('foeman', 2), ('garden."', 2), ('conclusive."', 2), ('library.', 2), ('alluded.', 2), ('witnesses', 2), ('three--two', 2), ('j', 2), ('alive?"', 2), ('jerking', 2), ('scholar', 2), ('rains', 2), ('deal.', 2), ('briefly', 2), ('measurements,', 2), ('swear.', 2), ('edition', 2), ('obligations', 2), ('item', 2), ('deception,', 2), ('truthful', 2), ('continental', 2), ('secret."', 2), ('were,"', 2), ('burrow', 2), ('depended', 2), ('meretricious,', 2), ('wardrobe,', 2), ("carey's", 2), ('process.', 2), ('things."', 2), ('gallantry', 2), ('waterloo.', 2), ('allowing', 2), ('trick.', 2), ('bureau?"', 2), ('worthless', 2), ("'come", 2), ('invitation', 2), ('feats', 2), ('it--the', 2), ('burglars?"', 2), ('expert.', 2), ('telescope', 2), ('wishes.', 2), ('sky-line,', 2), ('fire?"', 2), ('reflected', 2), ('jacobs,', 2), ('beams', 2), ('thing!"', 2), ('sketched', 2), ('muzzle,', 2), ('lake,', 2), ('later."', 2), ('pretence', 2), ('add?"', 2), ('companion."', 2), ('unfolding', 2), ('bigger', 2), ('chain.', 2), ('prostration', 2), ('fancy!', 2), ('researches,', 2), ('vigour', 2), ('garments,', 2), ('second.', 2), ('occur,', 2), ('countryside."', 2), ('"anyone', 2), ('aroused,', 2), ('port', 2), ('purpose."', 2), ('fresno', 2), ('energies.', 2), ('hoofs,', 2), ('report."', 2), ('fatigue.', 2), ('suggestion,', 2), ('disgrace,', 2), ('it--just', 2), ('sundial.', 2), ('interval,', 2), ('brief', 2), ('kindled', 2), ('everyone,', 2), ('soda', 2), ('creaked', 2), ('plumber', 2), ('desiring', 2), ('shirt,', 2), ('wronged', 2), ('turf.', 2), ('striking-looking', 2), ('click,', 2), ('inflexible', 2), ('shops,', 2), ('brazier', 2), ('beeswing.', 2), ('army,', 2), ('supplies', 2), ('peak', 2), ('coiled', 2), ('shutting', 2), ('blown,', 2), ('ahead,', 2), ('manor,"', 2), ('ceased.', 2), ('ourselves.', 2), ('skirt', 2), ('thither', 2), ('adair.', 2), ('perhaps."', 2), ('groaned,', 2), ('hesitated.', 2), ('buttons.', 2), ('"watson', 2), ('mornings', 2), ('"good!', 2), ('continent', 2), ('rudeness', 2), ('bracket', 2), ('cell,', 2), ('pale-faced,', 2), ('solution."', 2), ('occupy.', 2), ('servants."', 2), ('longing', 2), ('"hush!"', 2), ('fugitives', 2), ('focus', 2), ('napoleonic', 2), ('phenomenon,', 2), ('bagatelle', 2), ('bonnet,', 2), ('loose,', 2), ('excitable,', 2), ('hue', 2), ('crew,', 2), ('wrought.', 2), ('was?', 2), ('forgotten,', 2), ("first,'", 2), ('epistle.', 2), ('china.', 2), ('come?"', 2), ('shines', 2), ('distrait,', 2), ('godfrey,', 2), ('folly', 2), ('baboon."', 2), ('aloud:', 2), ('17', 2), ('value."', 2), ('disappointed.', 2), ('excellent,', 2), ('"fool', 2), ('proprietor', 2), ('depot.', 2), ('carelessly', 2), ("man,'", 2), ('serious,"', 2), ('music,', 2), ('ruefully', 2), ('tension', 2), ('second."', 2), ("to?'", 2), ('play,', 2), ('brixton.', 2), ('tract', 2), ('risk.', 2), ('souvenir', 2), ('hopkins,"', 2), ('rearranging', 2), ('good-humoredly.', 2), ('places,', 2), ('developments.', 2), ('void', 2), ('deathly', 2), ('yellow-backed', 2), ('neolithic', 2), ('derbyshire.', 2), ("captain's", 2), ('glances.', 2), ('everything,"', 2), ('exotic', 2), ('busts."', 2), ('unobserved.', 2), ('nestled', 2), ('drawback', 2), ('specialist.', 2), ('chart,', 2), ('atmosphere."', 2), ('vacancy,', 2), ("'with", 2), ('weight.', 2), ('darkening', 2), ('far?"', 2), ('vary', 2), ('too;', 2), ('robbery.', 2), ('goal', 2), ('villain!', 2), ('steamer', 2), ('pedestal', 2), ('asserted', 2), ('brought,', 2), ('120', 2), ('johnson,', 2), ('eva', 2), ('force.', 2), ('wall."', 2), ('limit', 2), ('rival,', 2), ('friendless', 2), ('legs,', 2), ('disappearance."', 2), ('forcibly', 2), ("mawson's,", 2), ('blackheath."', 2), ('billiards', 2), ('individual.', 2), ('capital.', 2), ('slim', 2), ('lean', 2), ('cringing', 2), ('smelt', 2), ('likes', 2), ('acton.', 2), ('go,"', 2), ('thumb."', 2), ('claws', 2), ('unscrupulous', 2), ('headlines', 2), ('freemason,', 2), ('moss,', 2), ('brightness', 2), ('fears,', 2), ('shrunk', 2), ('scoundrel', 2), ('no!"', 2), ('possessions', 2), ('disarranged', 2), ('movement,', 2), ('sorrow,', 2), ('comment', 2), ('search,', 2), ('irresolute', 2), ('rifled,', 2), ('placing', 2), ('questions?"', 2), ('vanishes', 2), ('middle-aged,', 2), ('fifty-three', 2), ('westminster.', 2), ('fireplace,', 2), ('glare,', 2), ('lestrade."', 2), ('ice,', 2), ('handwriting', 2), ('rival', 2), ('palimpsest.', 2), ('bite', 2), ('met,', 2), ('penetrate', 2), ('emotional', 2), ('recent,', 2), ('musical', 2), ('overriding', 2), ('body?"', 2), ('ezekiah', 2), ('step.', 2), ('bitter,', 2), ('tucked', 2), ("stepfather's", 2), ('appropriate', 2), ('alec.', 2), ('gallant', 2), ("much,'", 2), ('africa.', 2), ('reason."', 2), ('felled', 2), ('petrel', 2), ('ripe,', 2), ('companies', 2), ('events,"', 2), ('staunch', 2), ('double-bedded', 2), ('"arrest', 2), ('instantaneous', 2), ('"suddenly,', 2), ('betting,', 2), ('acquiring', 2), ('wages,', 2), ('inquiries.', 2), ('succession,', 2), ('hell-hound', 2), ('howling', 2), ('sound,"', 2), ('linked', 2), ('explains', 2), ('yes!', 2), ('baskerville,"', 2), ("people's", 2), ('ill?"', 2), ('relief,', 2), ('mankind', 2), ('blood-stain', 2), ('heads,', 2), ('affair?', 2), ('controlled', 2), ('morass,', 2), ('blandly.', 2), ('23d', 2), ('ruffians,', 2), ('prizes', 2), ('counterfoil', 2), ('windigate', 2), ('provided,', 2), ('[said', 2), ('bleeding,', 2), ('good!', 2), ('delicately', 2), ('pa.', 2), ('lodges', 2), ('active,', 2), ('observation.', 2), ('"unfortunately,', 2), ('mlle.', 2), ('3.', 2), ('skirts', 2), ('inferences.', 2), ('flaxen-haired', 2), ('advances', 2), ('jerky', 2), ('neighbors.', 2), ('signal,"', 2), ('page-boy,', 2), ('en', 2), ('suggest."', 2), ('jewels', 2), ('interrupted.', 2), ('includes', 2), ('gale,', 2), ('dejection.', 2), ('however:', 2), ('carelessness', 2), ('died?"', 2), ('confusion', 2), ('foolscap,', 2), ('random', 2), ('blotting-paper', 2), ('clawed', 2), ('muscles', 2), ('uniformed', 2), ('clips', 2), ('p', 2), ('fog-bank', 2), ('loose.', 2), ('impudent', 2), ('brows,', 2), ('conscience,', 2), ('amounted', 2), ('measuring', 2), ('xii.', 2), ('seemed,', 2), ('displayed', 2), ('pebble', 2), ('chambers.', 2), ('molest', 2), ('deftly', 2), ('require.', 2), ('greek,', 2), ('schemer', 2), ('despatch-box?"', 2), ('trafalgar', 2), ('unlocking', 2), ('spider', 2), ('pith', 2), ('breckinridge,', 2), ('honor', 2), ("hasn't", 2), ('image', 2), ('engaged.', 2), ('sword', 2), ('suicide.', 2), ('unclasping', 2), ('niece,', 2), ('sales', 2), ('shelf,', 2), ("'charing", 2), ('outset.', 2), ('heated', 2), ('handle.', 2), ('blue-eyed,', 2), ('flattening', 2), ('clergyman.', 2), ('loving', 2), ('horse?"', 2), ('uniform,', 2), ('committed."', 2), ('beeches.', 2), ('stars,', 2), ('"quite."', 2), ('cudgelled', 2), ('people."', 2), ('perched', 2), ('cry?"', 2), ('concealed,', 2), ('optician', 2), ("him.'", 2), ('languor', 2), ('possible;', 2), ('ring.', 2), ('investigator', 2), ('stub', 2), ('reasoner.', 2), ('imprudence', 2), ('profile', 2), ('living,', 2), ('suitable', 2), ('speculation,', 2), ('column.', 2), ('pistols,', 2), ('lecture', 2), ('weapons', 2), ('sebastian', 2), ('anybody', 2), ("alive.'", 2), ('brambles', 2), ('tangey', 2), ('commission."', 2), ('swaying', 2), ('scenes', 2), ('foreground', 2), ('wants.', 2), ('contraction', 2), ('newcomer.', 2), ('unhappiness', 2), ('basin', 2), ('female', 2), ('shelves.', 2), ('guttering', 2), ('quitted.', 2), ('authority', 2), ('gloss', 2), ('investigated', 2), ("harold?'", 2), ('by.', 2), ('tire,', 2), ('suggestion.', 2), ('i?"', 2), ('million,', 2), ('hanover', 2), ('screw-driver', 2), ('flickered', 2), ('staunton."', 2), ('say:', 2), ('murky', 2), ('nothing--nothing', 2), ('meant,"', 2), ('surmise,', 2), ("life.'", 2), ('inhabitants', 2), ('stillness', 2), ('married.', 2), ('crowd.', 2), ('practitioner,', 2), ("coronet?'", 2), ('spectacle', 2), ('tail.', 2), ('overwhelming', 2), ('apron.', 2), ('shops', 2), ('century.', 2), ('blush', 2), ('steep,', 2), ('organization,', 2), ('biography', 2), ('closely."', 2), ('bird."', 2), ('sad-faced,', 2), ('lend', 2), ("wilder's", 2), ('moulding.', 2), ('attention,"', 2), ('judicious', 2), ('guardsmen', 2), ('inarticulate', 2), ('representing', 2), ('appears."', 2), ("nobleman's", 2), ('rim', 2), ('yelled', 2), ('useless,', 2), ('weaving', 2), ('kirwan', 2), ('stand."', 2), ('pence', 2), ("is,'", 2), ('haste.', 2), ('hound."', 2), ('"undoubtedly."', 2), ('indelibly', 2), ('inspector?"', 2), ('moon.', 2), ('lee.', 2), ('malady.', 2), ('panted.', 2), ('blue.', 2), ('speedy', 2), ('stone-work', 2), ('kratides,', 2), ('bowing', 2), ('separation', 2), ('"\'all', 2), ('trevelyan,', 2), ('sandwiches', 2), ('connection.', 2), ('risen.', 2), ('curry', 2), ('hurriedly.', 2), ('glance.', 2), ('"\'pon', 2), ('clawing', 2), ('quarters.', 2), ('"am', 2), ('estimate', 2), ('exclamation.', 2), ('rejoicing', 2), ('earning', 2), ('palm.', 2), ('whereabouts.', 2), ('saloon', 2), ('eleven,', 2), ('gasping', 2), ('wood."', 2), ('tripod', 2), ('restored', 2), ('strangely', 2), ('they?', 2), ('3', 2), ('knelt', 2), ('boded', 2), ('in;', 2), ('stated,', 2), ('warmth', 2), ('rapidly,', 2), ('amber', 2), ('valet', 2), ('twentieth', 2), ('honest,', 2), ('plans;', 2), ('channels.', 2), ('more?"', 2), ("oldacre's", 2), ('shares."', 2), ('beauty,', 2), ('tinted,', 2), ('thready', 2), ('tennis', 2), ('budge', 2), ('transferred', 2), ('severity', 2), ('invested', 2), ("nonsense.'", 2), ('fury,', 2), ('rambled', 2), ('alluded,', 2), ('interior', 2), ('burgled', 2), ('moderate', 2), ('sutherland?"', 2), ('pyland,', 2), ('unknown,', 2), ('society?"', 2), ('"stop', 2), ('abduction', 2), ('box;', 2), ('zeal', 2), ('1.', 2), ('stain,', 2), ('fee.', 2), ('pondicherry', 2), ('remind', 2), ('pellet', 2), ('child."', 2), ('novel,', 2), ('disgust.', 2), ('expanding', 2), ('dashing,', 2), ('face;', 2), ('downs,', 2), ('bride."', 2), ('wind-swept', 2), ('haggard.', 2), ('expedition?', 2), ('enough!"', 2), ('fifteenth', 2), ('indirectly', 2), ('bared', 2), ('subject."', 2), ('norfolk.', 2), ('naturalist,', 2), ('night,"', 2), ('trust."', 2), ('deception', 2), ('diggings.', 2), ('bohemia."', 2), ('desert', 2), ('staff."', 2), ('resign', 2), ('moonshine', 2), ('symptoms.', 2), ('to--"', 2), ('goodge', 2), ('blinked', 2), ('sir--not', 2), ('cork,', 2), ('writings,', 2), ("was?'", 2), ('pennies', 2), ('example.', 2), ('howl,', 2), ('common."', 2), ('bruise', 2), ('scruples', 2), ('foolishly', 2), ('eggs,', 2), ('course?"', 2), ('pompous,', 2), ('rumble', 2), ('sides,', 2), ('skeleton', 2), ('good-natured', 2), ('dates,', 2), ('dear!', 2), ('carpets', 2), ('dreamer', 2), ('entomology', 2), ("'frisco,", 2), ('miles.', 2), ('stapleton?"', 2), ('staining', 2), ('street,"', 2), ('inference.', 2), ('spanned', 2), ('favorite,', 2), ('stagger', 2), ('frown.', 2), ('sundown', 2), ('approvingly.', 2), ('solicitor', 2), ('buildings,', 2), ('"take', 2), ("'your", 2), ('robber', 2), ('trap.', 2), ('promise.', 2), ('shivered', 2), ('edith', 2), ('grin.', 2), ('ruddy,', 2), ('moss', 2), ('emerged.', 2), ('palpitating', 2), ('nicely.', 2), ('cannot."', 2), ('clamped', 2), ('fleecy', 2), ('anticipated.', 2), ('sidelong', 2), ('woodcock,', 2), ('uncouth', 2), ('masses', 2), ('staunton?"', 2), ('attentive', 2), ('yourself,"', 2), ('blanks', 2), ('scenery', 2), ('articles,', 2), ('diving', 2), ('half-full', 2), ('paved', 2), ('chronicled', 2), ('roofed', 2), ('boxes', 2), ('lowest', 2), ('river,', 2), ('straker."', 2), ('august', 2), ('wreckage', 2), ('lime-cream.', 2), ('smart', 2), ('lifetime.', 2), ('model', 2), ('band!', 2), ('rifts', 2), ('susan,', 2), ('frankness,', 2), ('gained?"', 2), ('correspondent,', 2), ('fished', 2), ('worn.', 2), ('voices.', 2), ('fournaye', 2), ("that,'", 2), ('aroused."', 2), ('contrived,', 2), ('"neither', 2), ('determining', 2), ('forced.', 2), ('said--"', 2), ('incriminate', 2), ('embellish', 2), ('lately,', 2), ('hysterical,', 2), ('1883.', 2), ('tobacco-pouch', 2), ('tumbled', 2), ('retraced', 2), ('instructed', 2), ("don't.", 2), ('inspection.', 2), ('index,', 2), ('box-room', 2), ('injured,', 2), ('dearest', 2), ('bricks.', 2), ('aggressive', 2), ('brunton,', 2), ('open?"', 2), ('"pull', 2), ('course!', 2), ("dad,'", 2), ('science.', 2), ('smeared', 2), ('wounds', 2), ('flowed', 2), ('rat,', 2), ('hound?', 2), ('secured.', 2), ('backwater', 2), ('points,"', 2), ('conclusion?"', 2), ('weary,', 2), ('parlour', 2), ('sir--a', 2), ('pay.', 2), ("ladies'", 2), ('masters', 2), ('suggest,', 2), ('acquaintance.', 2), ("harker's", 2), ('disinclination', 2), ('farnham.', 2), ('views', 2), ('suppose,"', 2), ('achievements', 2), ("'83", 2), ('institution,', 2), ('guild', 2), ('symbol', 2), ('surroundings.', 2), ('save,', 2), ('ancestors,', 2), ('soaked', 2), ('week-end,', 2), ('whilst', 2), ('parr,', 2), ('son?', 2), ('banker.', 2), ('lives,', 2), ('pips.', 2), ('perch', 2), ('proceed,', 2), ('german.', 2), ('duplicate.', 2), ('deeper,', 2), ('itself,"', 2), ('arrival.', 2), ('caressing', 2), ('stare,', 2), ('debt."', 2), ('sharpened', 2), ("mean?'", 2), ('spectral', 2), ('from?', 2), ('ocean', 2), ('blazing,', 2), ('topped', 2), ('disappointing.', 2), ('crushed.', 2), ('restrain', 2), ('suggestions', 2), ('scorn', 2), ('fellow."', 2), ('roads?"', 2), ('fellows.', 2), ('l."', 2), ('wry', 2), ('catlike', 2), ('me--the', 2), ('desperately', 2), ('pasting', 2), ('intervened', 2), ('confidant,', 2), ("t's", 2), ('"great', 2), ('morrison.', 2), ('himself,"', 2), ('innocent.', 2), ('surround', 2), ('doors.', 2), ('want,', 2), ('knives', 2), ('been?"', 2), ('straker?"', 2), ('dismantled', 2), ('coaxing', 2), ('sole,', 2), ('none,"', 2), ('twinkled,', 2), ('sticking', 2), ('scrip', 2), ('gales', 2), ('condition.', 2), ('patter', 2), ('lestrade!', 2), ("once.'", 2), ('wont', 2), ('"\'any', 2), ('country,"', 2), ('"through', 2), ('idee', 2), ('trinity', 2), ('anna!"', 2), ('frail', 2), ('she?"', 2), ('boss', 2), ('landlady.', 2), ('seven."', 2), ('tolerably', 2), ('"selden', 2), ('pretty,', 2), ('curtain?', 2), ('suicide,', 2), ('shrilly', 2), ('purest', 2), ('stepfather.', 2), ('nephew', 2), ('prisoners.', 2), ('pair,', 2), ('traced,', 2), ('mastiff.', 2), ('provoking', 2), ('overjoyed', 2), ('marshy', 2), ('preparing', 2), ('carte', 2), ('marker', 2), ('match.', 2), ('porter.', 2), ('waters,"', 2), ('pages.', 2), ('says.', 2), ('flash.', 2), ('cliff', 2), ('best."', 2), ('presses', 2), ('nine-thirty.', 2), ('descended,', 2), ('green-scummed', 2), ("who's", 2), ('so!"', 2), ("overton's", 2), ("whitney's", 2), ('rare.', 2), ('decent', 2), ('intention,', 2), ('information."', 2), ('displeasure.', 2), ('adelaide-southampton', 2), ('rustle,', 2), ('forward.', 2), ('peculiarity', 2), ('lawsuit', 2), ('slip?"', 2), ('cart.', 2), ('eve', 2), ('discolouration', 2), ('conveniently', 2), ('1st', 2), ('absurd,', 2), ('whirling', 2), ('mad?"', 2), ('stolid', 2), ("holmes.'", 2), ('toy', 2), ('breakfasted', 2), ('brougham,', 2), ('problems."', 2), ('thus:', 2), ('convicts,', 2), ('lat.', 2), ('flooring', 2), ('1890.', 2), ('use."', 2), ('fly-paper', 2), ('unnecessarily', 2), ('victor', 2), ('backwater,', 2), ('offer,', 2), ('harker.', 2), ('outrages', 2), ('scott,', 2), ('typewritten.', 2), ('confound', 2), ('additional', 2), ('metropolis,', 2), ('notoriety', 2), ('frockcoat,', 2), ('assuring', 2), ('avenged.', 2), ('observance', 2), ('reproaching', 2), ('now----"', 2), ('"\'or', 2), ('half-dozen', 2), ('exception.', 2), ('father?"', 2), ('sailing', 2), ('wings', 2), ('adventures,', 2), ('simpson,', 2), ('recorded,', 2), ('lips."', 2), ('glittering', 2), ('whistling', 2), ('loathsome', 2), ('draft', 2), ("armstrong's", 2), ('ritual.', 2), ('sickness', 2), ('remember.', 2), ('term,', 2), ('contest', 2), ('regina', 2), ('vestige', 2), ('money."', 2), ('monkey', 2), ('limits,', 2), ('jackson', 2), ('lodge-keeper.', 2), ('inkling', 2), ('distracted', 2), ('ascend', 2), ('monogram', 2), ('spence', 2), ('jemmy,', 2), ('injury,', 2), ('twilight,', 2), ('large."', 2), ('gipsy', 2), ('fly."', 2), ('"man,', 2), ('room,"', 2), ('branching', 2), ('seeds', 2), ("'oh,", 2), ('magistrate', 2), ('norwich,', 2), ('gypsies.', 2), ('son?"', 2), ('dived', 2), ('hope.', 2), ('cuttings.', 2), ('scarce', 2), ('seventeen', 2), ('exclaimed', 2), ('painted', 2), ('piquant', 2), ('heat.', 2), ('execution', 2), ('lumber-room', 2), ('buffet', 2), ('bloom', 2), ('recent.', 2), ('deference', 2), ('bred."', 2), ('prince', 2), ('silver."', 2), ('occupying', 2), ('advertised', 2), ('tolerable', 2), ('rise,', 2), ('speeding', 2), ('heart--it', 2), ('handwriting.', 2), ('vault', 2), ('jerked', 2), ('ran.', 2), ('connoisseur,"', 2), ("butcher's", 2), ('taxed', 2), ('skilful', 2), ('distinction', 2), ('hasty', 2), ("'life,'", 2), ('hearth', 2), ('accuracy', 2), ('wasting', 2), ('tracks."', 2), ('curb,', 2), ('gallows.', 2), ('vacuous', 2), ('style,', 2), ('near,', 2), ('shrouded', 2), ('resisted', 2), ('scion', 2), ('fold', 2), ('pawnbroker', 2), ('lancaster', 2), ('m.,', 2), ('"nothing?"', 2), ('innocence.', 2), ('soundest', 2), ('advancing', 2), ('highroad', 2), ('hunger', 2), ('states,', 2), ('sentence.', 2), ('gems?"', 2), ("watson's", 2), ('commissionnaire;', 2), ('atone', 2), ("us.'", 2), ('associates', 2), ('foresee,', 2), ('quarrel.', 2), ('traces,', 2), ("d'you", 2), ('repair', 2), ('granted.', 2), ('anyone."', 2), ('detect', 2), ('parker,', 2), ('norwood,', 2), ('up?"', 2), ('intelligence,', 2), ('cravats', 2), ('fidelity', 2), ('departs', 2), ('due.', 2), ('plausible."', 2), ('humours', 2), ('occupation,', 2), ('aberdeen', 2), ('spouting', 2), ('anywhere.', 2), ('decay.', 2), ('perplexity', 2), ('delay,', 2), ('surgeon,', 2), ('heath,', 2), ('gold-rimmed', 2), ('risk,', 2), ('expressly', 2), ('thoughtfully,', 2), ('spinning', 2), ('corroborated', 2), ('aniseed', 2), ('tempted', 2), ('government,', 2), ('nerves."', 2), ('grass,', 2), ('headings', 2), ('theatre.', 2), ('bordered', 2), ('breakfast-table.', 2), ("shouldn't", 2), ('peat', 2), ('public-house.', 2), ('jaw', 2), ('mare,', 2), ('bridle', 2), ('consumption', 2), ('lawyer,', 2), ('disadvantages,', 2), ('hatred,', 2), ('linen.', 2), ('drain', 2), ('alluded', 2), ('donnithorpe', 2), ('stops', 2), ('hell-hound,', 2), ('purposeless', 2), ('assuming.', 2), ('perseverance', 2), ('fenchurch', 2), ('bandage', 2), ('athens,', 2), ('t', 2), ('grazing', 2), ('forefinger,', 2), ('bullion', 2), ('human.', 2), ('perplexity.', 2), ('would."', 2), ('conjecture.', 2), ('occupation.', 2), ('marriage."', 2), ('faint,', 2), ('loom', 2), ('murphy', 2), ('civilly', 2), ("gone.'", 2), ('hearty,', 2), ('knees.', 2), ('mentioned?"', 2), ('heels."', 2), ('collector', 2), ('leaves.', 2), ('crooksbury', 2), ('feminine', 2), ('jolted', 2), ('mate', 2), ('hopkins!', 2), ('prisoners,', 2), ('interminable', 2), ('hopkins?"', 2), ('sane', 2), ('around,', 2), ('benefactor', 2), ('useful,"', 2), ('low.', 2), ('wedding."', 2), ('haunts', 2), ('detection.', 2), ('receipt', 2), ('falling.', 2), ('jump.', 2), ('fish', 2), ('sparkled,', 2), ('farm,', 2), ('butterflies', 2), ('darkness?', 2), ('estates', 2), ('clinched', 2), ('moor-gate,', 2), ('cracked,', 2), ('defiantly', 2), ('befall.', 2), ('abundant', 2), ('happen,', 2), ('intelligence.', 2), ('rascal!', 2), ('stapletons,', 2), ('ensue', 2), ('streaming', 2), ('provoked', 2), ('skin,', 2), ('glories', 2), ('amusement.', 2), ('packets', 2), ('hurl', 2), ('effigy,', 2), ('exciting', 2), ('ready?"', 2), ('property?', 2), ('r.', 2), ('difficult.', 2), ('leaving,', 2), ('catch.', 2), ('inquired.', 2), ('"\'no,\'', 2), ('upward.', 2), ('nearer,', 2), ('enthusiast', 2), ('shutter', 2), ('coast,', 2), ('ships', 2), ('answers.', 2), ('obscure,', 2), ('"even', 2), ('vanish,', 2), ('variety,"', 2), ('fullest', 2), ('flame.', 2), ('diggings,', 2), ('intending', 2), ('lands', 2), ('ado', 2), ('astonished.', 2), ('paris,', 2), ('well-remembered', 2), ('biographies', 2), ('excitements', 2), ('must."', 2), ('"\'when', 2), ('hairpin', 2), ('scoundrel."', 2), ('sly', 2), ('search.', 2), ("why?'", 2), ('telegraph,', 2), ('exacted', 2), ('retreat', 2), ('real,', 2), ('half-way', 2), ("least,'", 2), ('torrent', 2), ('chimes', 2), ('diamonds', 2), ('visitors.', 2), ('legible,', 2), ('bulk', 2), ('seizes', 2), ("bannister's", 2), ('prayer', 2), ('brink', 2), ('explanations.', 2), ('chesterfield,', 2), ('lowther', 2), ('spell', 2), ('good;', 2), ('warm,', 2), ('serious.', 2), ('spring.', 2), ('give,', 2), ('omitted', 2), ('again,"', 2), ('design', 2), ('flaring', 2), ('"\'she', 2), ('weather,', 2), ('cells', 2), ('30', 2), ('thief,', 2), ('soldiers,', 2), ('gossip,', 2), ('powerful,', 2), ('"wonderful!', 2), ('leniently', 2), ('trembled', 2), ('brims', 2), ('occupant,', 2), ("backwater's", 2), ('skylight', 2), ('dot', 2), ('shut,', 2), ('recovered,', 2), ('16', 2), ('pains.', 2), ('fleshless', 2), ("john,'", 2), ('method,', 2), ('hurts', 2), ('feeling,', 2), ('doing,"', 2), ('impulsive,', 2), ('four."', 2), ('certificate', 2), ('carafe', 2), ('soles', 2), ('derbyshire', 2), ('circular', 2), ('shifted', 2), ('ruin.', 2), ('ours.', 2), ('evidence."', 2), ('barrow', 2), ('loss,', 2), ('obvious."', 2), ('add,', 2), ('"barrymore', 2), ('fears.', 2), ('unkind', 2), ('consuming', 2), ('keyhole,', 2), ('godfrey.', 2), ('sailing-ship.', 2), ('headquarters.', 2), ('felt,', 2), ('blue,', 2), ('regiment,', 2), ('intended,', 2), ('purposeful', 2), ('"eh?', 2), ('toes.', 2), ('bloodless', 2), ('depart', 2), ('pocket-book.', 2), ('"irene', 2), ('nn', 2), ('scandals', 2), ('reconsider', 2), ('embarrassed', 2), ('thought."', 2), ('david', 2), ('countries.', 2), ('balcony', 2), ('muster', 2), ('savannah,', 2), ('ancestral', 2), ('beggar', 2), ('burglar.', 2), ('stride', 2), ('excursions,', 2), ('earnestly.', 2), ('associations.', 2), ('scholarship.', 2), ('foaming', 2), ('wire,', 2), ('tendencies', 2), ('15', 2), ('grazed', 2), ('two-edged', 2), ('bunk', 2), ('mile,', 2), ('bill,', 2), ('klux', 2), ('footfalls', 2), ('portrait.', 2), ('expenditure', 2), ('drunkard.', 2), ('gray.', 2), ('word!', 2), ('sick-room', 2), ('attributed', 2), ('attitude,', 2), ('honesty', 2), ('hinge,', 2), ('perhaps.', 2), ('cordially.', 2), ('puffed', 2), ('deeply,', 2), ('trade.', 2), ('establishment,', 2), ('boisterous', 2), ('flatter', 2), ('notice."', 2), ('examination."', 2), ('naturalist', 2), ('rush,', 2), ('"eight', 2), ('morcar', 2), ('intrude,', 2), ('feels', 2), ('disease', 2), ('sections', 2), ('kidnapping', 2), ('delirious.', 2), ('east,', 2), ('address:', 2), ('training-stable', 2), ('liking', 2), ('erect,', 2), ('bedside', 2), ('b,', 2), ('ring."', 2), ('bristol,', 2), ('room?', 2), ('survivor', 2), ('"pray,', 2), ('norton', 2), ('vague.', 2), ('seriously.', 2), ('economy."', 2), ('expense,', 2), ('selden', 2), ('exercised', 2), ('tiger.', 2), ('fowl', 2), ('forgery', 2), ('deductions,', 2), ('morton,', 2), ('surrey."', 2), ('opera', 2), ('bully,', 2), ('spanish', 2), ('repairs,', 2), ('sharpen', 2), ('forgiveness.', 2), ("butler's", 2), ('ghastly,', 2), ('constable?"', 2), ('confused.', 2), ('crevice', 2), ('researches.', 2), ('effect."', 2), ('cat,', 2), ('"certainly,"', 2), ('vessels', 2), ('stirring', 2), ('face--a', 2), ('upstairs,"', 2), ('sobbed', 2), ('six."', 2), ('artillery,', 2), ('ruse', 2), ('twinkling', 2), ('abroad,', 2), ('treacherous', 2), ('accordance', 2), ('britain.', 2), ('cage', 2), ('"\'who', 2), ('muscular', 2), ('lee', 2), ('pardon.', 2), ('noblest', 2), ('eligible', 2), ('indeed?"', 2), ('shelf.', 2), ('"ah,"', 2), ('surpass', 2), ('assassin', 2), ('activity', 2), ('police;', 2), ('hereford', 2), ('ransom.', 2), ('control.', 2), ('surplice', 2), ('aperture,', 2), ('manhood', 2), ('happiness', 2), ('footpath', 2), ('lids,', 2), ('photographs', 2), ('kings', 2), ('pile.', 2), ('inmost', 2), ('eager,', 2), ("death's", 2), ('angle,', 2), ('sherlock,', 2), ('mutton', 2), ('readiness.', 2), ('harker,', 2), ('affected.', 2), ('endeavor', 2), ('"\'certainly,\'', 2), ('public-house,', 2), ('celtic', 2), ('purposeless.', 2), ('lucas.', 2), ('care.', 2), ('rusted', 2), ('varnish', 2), ('mccarthy."', 2), ("coward!'", 2), ('wrinkled', 2), ('lived?"', 2), ('slapped', 2), ('ominous', 2), ('inquiries,"', 2), ('corporal', 2), ('frugal', 2), ('dreaming', 2), ('firelight', 2), ('decision,', 2), ('strayed', 2), ('pack,', 2), ('receipted', 2), ('self-command,', 2), ('impressions,', 2), ('deposed', 2), ('constable."', 2), ('haul', 2), ('drenched', 2), ('spontaneous', 2), ('impossible,"', 2), ('word!"', 2), ('blame,', 2), ('fanciful', 2), ('exploit', 2), ('clever,', 2), ('fraser,', 2), ('superstition', 2), ('colonel,"', 2), ('yourself!"', 2), ('bets', 2), ('recollection,', 2), ('reconsidered', 2), ('providence', 2), ('boyish', 2), ('obtained,', 2), ('lenient', 2), ('"\'"i\'d', 2), ('tales', 2), ('deserve', 2), ('stunned', 2), ('norbury."', 2), ('favor', 2), ('eyes;', 2), ('"out', 2), ('"ask', 2), ('justly', 2), ('years,"', 2), ('"better', 2), ('literature', 2), ('postmaster,', 2), ('wheel-tracks', 2), ('society."', 2), ('specialty', 2), ('wisely', 2), ('he!', 2), ('going.', 2), ('ponderous', 2), ('windows."', 2), ('bog.', 2), ('lamented', 2), ('uttering', 2), ('drugged', 2), ('robbed', 2), ('exclaimed,', 2), ('footprint', 2), ('bolted.', 2), ('game-keeper', 2), ('eccentricity.', 2), ("pounds.'", 2), ('jerky,', 2), ('contraction,', 2), ('water-mark.', 2), ('dreadfully', 2), ('roylotts', 2), ('sure!', 2), ('baboon.', 2), ('spots', 2), ('"who\'s', 2), ('brute!"', 2), ('counter,', 2), ('defaced', 2), ('recourse', 2), ('ditch,', 2), ('bar.', 2), ('violin', 2), ("'your,'", 2), ('confess,"', 2), ('miry', 2), ('pursuers.', 2), ('howled', 2), ('explosion', 2), ('guessed,', 2), ('peasants,', 2), ('individuals,', 2), ('wilderness', 2), ('varying', 2), ('disclose', 2), ('simplify', 2), ('prick', 2), ('holes', 2), ('masonry.', 2), ('jail', 2), ('squire,', 2), ('others."', 2), ('clue."', 2), ('echoed', 2), ('delayed', 2), ('accident.', 2), ('weeping', 2), ("myself.'", 2), ('everyday', 2), ('grind', 2), ('botany', 2), ('position?"', 2), ('crowded,', 2), ('journalist', 2), ('superstition.', 2), ('outpaced', 2), ('occur.', 2), ('promptly', 2), ('warnings', 2), ('"perfectly', 2), ('depressed.', 2), ('down?"', 2), ('cares', 2), ("'moor'", 2), ('trove', 2), ('relative', 2), ('fired.', 2), ('legible', 2), ('acknowledged', 2), ('hinge', 2), ('temple.', 2), ('aunt', 2), ('lachine,', 2), ('passers-by.', 2), ('astounded', 2), ('hoped.', 2), ("wilson's", 2), ('principle', 2), ('acts', 2), ('gorot,', 2), ('failed."', 2), ('splashed', 2), ('statue', 2), ('suggestiveness', 2), ('ago--to', 2), ('baskerville--that', 2), ('high-spirited', 2), ('forearm.', 2), ('plant', 2), ('distrait.', 2), ('bundled', 2), ("banker's", 2), ('opinion."', 2), ('bucket', 2), ('delirium.', 2), ('composure', 2), ('so;', 2), ('pictured', 2), ('newcomers', 2), ('host,', 2), ('england,"', 2), ('elemental', 2), ('slabs', 2), ('pile,', 2), ('brackenstall,', 2), ('"won\'t', 2), ('norwood."', 2), ('meanly', 2), ('boxed', 2), ('correctly', 2), ('noses.', 2), ('spot.', 2), ('side-table', 2), ('unconcerned', 2), ('forfeit', 2), ('proposition', 2), ('arrest.', 2), ('cleverly', 2), ('disdain', 2), ('comparison', 2), ('watery', 2), ('seats', 2), ('hinted', 2), ('mount-james', 2), ('fresh,', 2), ('1891,', 2), ('reproduction', 2), ('remembering', 2), ('suited', 2), ('columns.', 2), ('desirous', 2), ('burgle', 2), ('pouch', 2), ('inspire', 2), ('admits', 2), ('withered', 2), ('guiding', 2), ('ardent', 2), ('suburb,', 2), ('lyons.', 2), ('honoured', 2), ('wizard,', 2), ('scuffle,', 2), ('grotesque,', 2), ('beard."', 2), ('fancy,"', 2), ('chatted', 2), ('imagination,"', 2), ('witness,', 2), ('problem,"', 2), ('recommend,', 2), ('possession."', 2), ("months'", 2), ('quiver', 2), ('parts,', 2), ('wearer', 2), ('travel,', 2), ('accuse', 2), ('game-keeper,', 2), ('halted,', 2), ('fiver', 2), ('representative.', 2), ('hat."', 2), ('renewed', 2), ('flag', 2), ('australia."', 2), ('pages,', 2), ('dates.', 2), ('harrow,', 2), ('zealous', 2), ('russia,', 2), ('commence,', 2), ('magnates', 2), ('generosity', 2), ('outset', 2), ('travelling', 2), ('cord.', 2), ('"whose', 2), ('"now,"', 2), ('same,"', 2), ('busied', 2), ('hampstead."', 2), ('brain-fever.', 2), ('leatherhead,', 2), ('moonlight.', 2), ("saltire's", 2), ('desirable', 2), ('assizes', 2), ('pillows', 2), ('streaked', 2), ('fate?', 2), ('watcher,', 2), ('simpler', 2), ('doctor?"', 2), ('plantation', 2), ('impossible."', 2), ('heavily.', 2), ('men,"', 2), ('dropped.', 2), ('mourning', 2), ('skull.', 2), ('5.', 2), ('daunted', 2), ('kitchen?"', 2), ('debts', 2), ('fordham', 2), ('title,', 2), ('beasts', 2), ('terror,', 2), ('tree,', 2), ('justifiable,', 2), ('cylinder', 2), ('follow?', 2), ('tors', 2), ('"this,', 2), ('leash', 2), ('watered', 2), ('occupant', 2), ('cabinet,', 2), ('islands', 2), ('superstitious', 2), ('newspapers,', 2), ('lurched', 2), ('kent.', 2), ('"should', 2), ('thread,', 2), ('released', 2), ('veins.', 2), ('literally', 2), ('framework', 2), ('reins', 2), ('traits', 2), ('stoper.', 2), ('wooing', 2), ('shelves', 2), ('australia.', 2), ('publicity.', 2), ('republican', 2), ('merit', 2), ('insensible,', 2), ('slates,', 2), ('pencil.', 2), ('harley', 2), ("'if", 2), ('lifeless', 2), ('hoofs', 2), ('l,', 2), ('extent.', 2), ('evening--a', 2), ('letter-weight,', 2), ('bedrooms.', 2), ('act."', 2), ('eventually,', 2), ('beads', 2), ('start."', 2), ('"many', 2), ('eternal', 2), ('fund', 2), ("gilchrist's", 2), ('nearer.', 2), ('pavement.', 2), ('chins', 2), ('chagrin', 2), ('gaped', 2), ('thing?"', 2), ('maid?"', 2), ('turner,"', 2), ('gifts', 2), ('thinking,', 2), ('aldershot,', 2), ('hat?"', 2), ("else?'", 2), ('disappeared?"', 2), ('daresay,', 2), ('strong.', 2), ('free,', 2), ('neglect', 2), ('evans', 2), ('"try', 2), ('winning', 2), ('courteous', 2), ('rod', 2), ('pulse', 2), ('malignant,', 2), ('refreshed', 2), ('up!', 2), ('shudder', 2), ('"each', 2), ('neglected', 2), ('nursery.', 2), ('bread', 2), ('roughs', 2), ('unemotional', 2), ('fetch', 2), ('successful,', 2), ('excavating', 2), ('reasonably', 2), ('"lone', 2), ('fellow-countryman.', 2), ('exit.', 2), ('freedom', 2), ('better!"', 2), ('ancestors', 2), ('said?', 2), ('cow', 2), ('terms?"', 2), ('hurling', 2), ('defined.', 2), ('display', 2), ('"john', 2), ('tastes,', 2), ('friendship,', 2), ('bradstreet.', 2), ('not!"', 2), ('law?"', 2), ('examples', 2), ('joking.', 2), ('chained', 2), ('tale,', 2), ('defended', 2), ('yawning.', 2), ('by,', 2), ('trace.', 2), ('tremor', 2), ('roads,', 2), ('dip', 2), ('patrick.', 2), ('sort."', 2), ('alighting', 2), ('guest,', 2), ('entail,', 2), ('discretion.', 2), ('whispered;', 2), ('classes', 2), ('firemen', 2), ('bank.', 2), ('criminal?"', 2), ('welsh', 2), ('product.', 2), ('obey', 2), ('prison,', 2), ('seals', 2), ('kind-hearted.', 2), ('"\'anything', 2), ('diary,', 2), ('complexion', 2), ('theory?"', 2), ('however."', 2), ('dumb.', 2), ('"\'yes,\'', 2), ('dead."', 2), ('backwards,', 2), ('doughy', 2), ('coincidence,', 2), ('repeated.', 2), ('wife?', 2), ('worthingdon', 2), ('j.p.,', 2), ('watt', 2), ('atmosphere.', 2), ('middle-sized,', 2), ('cracks', 2), ('merchant,', 2), ('trouble,"', 2), ('hercules.', 2), ('"to-day,', 2), ('plume', 2), ('flecked', 2), ('lord!"', 2), ('chasm.', 2), ('dies,', 2), ('stride,', 2), ('construct', 2), ('sea-chest,', 2), ('slime', 2), ('career."', 2), ('rumors', 2), ('superb', 2), ('hampered', 2), ('vague,', 2), ('exposure,', 2), ('defeat', 2), ('wicker', 2), ('imperial', 2), ('brambletye', 2), ('successes,', 2), ('resided', 2), ('heaving', 2), ("housekeeper's", 2), ('instructions,', 2), ('"\'here', 2), ('mire."', 2), ('agony.', 2), ('wrong."', 2), ('half-buttoned,', 2), ('littered', 2), ('lace', 2), ('rescue.', 2), ('noises', 2), ('lamp-post', 2), ('ruefully.', 2), ("bird's", 2), ('decrepit', 2), ('judgment.', 2), ('read.', 2), ('cabman,', 2), ('house-maid', 2), ('key."', 2), ('singular,', 2), ('virtuous', 2), ('mews', 2), ('yawn.', 2), ('orders,', 2), ('"naturally,', 2), ('programme,', 2), ('spaulding,', 2), ('lists', 2), ('handiwork', 2), ('doorstep', 2), ("criminal.'", 2), ('singular.', 2), ('grime', 2), ('overcoat,', 2), ('rolls', 2), ('leather.', 2), ('forgery."', 2), ('record,', 2), ('separated,', 2), ('excursion.', 2), ('weak.', 2), ('plans."', 2), ('practitioner.', 2), ('broader', 2), ('facts?"', 2), ('sutherland.', 2), ('providence,', 2), ('machine.', 2), ("arthur's", 2), ('jacket,', 2), ('severely.', 2), ('given,', 2), ('occupant.', 2), ('weather-beaten', 2), ('copper,', 2), ('vegetables', 2), ('lively', 2), ('"\'"so', 2), ('blackthorn', 2), ('four-wheeler.', 2), ('serpentine-mews,', 2), ('enacted.', 2), ('jewel-case', 2), ('official.', 2), ('carbuncle', 2), ('testament,', 2), ('even,', 2), ('helplessly', 2), ('limb.', 2), ('thrilling', 2), ('emerge', 2), ('dig', 2), ('simple,', 2), ('socks,', 2), ('fashion?"', 2), ('bonny', 2), ('comparative', 2), ("star'", 2), ('crimson.', 2), ('comfortable,', 2), ('amaze', 2), ('luxuriant', 2), ('worm-eaten', 2), ('exertion', 2), ('benevolent', 2), ('prize,', 2), ('"frankly,', 2), ('sham', 2), ("'please,", 2), ('pallid', 2), ('acknowledges', 2), ('pursuers', 2), ('intervals', 2), ('indescribable', 2), ('weakness,', 2), ('organisation', 2), ('postscript', 2), ('"away', 2), ('star,', 2), ('extremely.', 2), ('"\'certainly', 2), ('walks,', 2), ('clay,"', 2), ('gash', 2), ('tenacity', 2), ('overlooked.', 2), ('trevelyan.', 2), ("miners'", 2), ("promise,'", 2), ('accident?', 2), ('burden', 2), ('beecher', 2), ('warning,', 2), ('ascended,', 2), ('paralyzing', 2), ('renew', 2), ('war."', 2), ('prosecution', 2), ('unlikely.', 2), ('further,', 2), ('along.', 2), ('indorsed', 2), ('misfortune.', 2), ('backed', 2), ('"think', 2), ('keys,', 2), ('false.', 2), ('watson--i', 2), ('gesture,', 2), ('unwilling', 2), ('chatham.', 2), ("'frisco.", 2), ('reappeared', 2), ('"yet', 2), ('shreds', 2), ('bread,', 2), ('4th', 2), ('opposing', 2), ('pictures.', 2), ('deficient', 2), ('urge', 2), ('seem.', 2), ('passengers', 2), ("horses'", 2), ("'mr.", 2), ('cushion,', 2), ('mines', 2), ('favour.', 2), ('saturated', 2), ('bottom."', 2), ('"none.', 2), ('flap', 2), ('crouching,', 2), ('contented', 2), ('laughed,', 2), ('englishman,', 2), ('bride,', 2), ('dining-room."', 2), ('extraordinary,', 2), ('blunder', 2), ('lost,', 2), ('donnithorpe,', 2), ('scenery.', 2), ('trespass', 2), ('evident,', 2), ('bargain,', 2), ('rope.', 2), ('incompatible', 2), ('california', 2), ("'i've", 2), ('applying', 2), ('object."', 2), ('precautions,', 2), ('stock,', 2), ('"queer', 2), ('giggling', 2), ('gaiters.', 2), ('sheet.', 2), ('tudor', 2), ('shepherds', 2), ('premises,', 2), ('pride,', 2), ('rained', 2), ('thoroughfare', 2), ('imminent.', 2), ('packet', 2), ('situated', 2), ('adler?"', 2), ('roamed', 2), ('investments', 2), ('birds,', 2), ('performance', 2), ('bath', 2), ('upsetting', 2), ('ribs', 2), ('rack.', 2), ('someone.', 2), ('aimless', 2), ('unhealthy', 2), ('unnecessary.', 2), ('elastic-sided', 2), ('"\'so,\'', 2), ('depressed', 2), ('tempting', 2), ('producing', 2), ('rejoice', 2), ('assume.', 2), ('strewn', 2), ('hobbling', 2), ('rapidly.', 2), ('dundee.', 2), ('savagely', 2), ('spared', 2), ('1883,', 2), ('haggard,', 2), ('acquaintances', 2), ('overcame', 2), ("d'ye", 2), ('disturbing', 2), ('smouldered', 2), ('bosom.', 2), ('beeswing', 2), ('price."', 2), ('happen.', 2), ('successful."', 2), ('"old', 2), ('homes', 2), ('lock?"', 2), ('gill', 2), ('clayton,', 2), ('satisfactory.', 2), ('certainly.', 2), ('circus.', 2), ('explanation?"', 2), ('prim,', 2), ('balustraded', 2), ('hole.', 2), ('duplicates', 2), ('consciousness,', 2), ('me:', 2), ('novel,"', 2), ('missing?"', 2), ('waistcoat.', 2), ('lofty', 2), ('ice', 2), ('insinuating', 2), ('insignificant', 2), ('amusement,', 2), ('research,', 2), ('why.', 2), ('clay.', 2), ('"\'which', 2), ("doctors'", 2), ('loud."', 2), ('desire,', 2), ('advise."', 2), ('trick,', 2), ('notes.', 2), ('observer', 2), ('uncommon', 2), ("london.'", 2), ('typewriter,', 2), ('french,', 2), ('bed;', 2), ('fates', 2), ('entering,', 2), ('watercourse', 2), ('legend."', 2), ('junior', 2), ('subtler', 2), ('howells', 2), ('chased', 2), ('crocuses', 2), ('treatment', 2), ('text', 2), ('protruding,', 2), ('kin', 2), ('evil.', 2), ('messenger,', 2), ('station?', 2), ('surmounted', 2), ('pond,', 2), ('capacity', 2), ('tea,', 2), ("'cooee'", 2), ('neighbour.', 2), ('benefit,', 2), ('striving', 2), ('cover.', 2), ('experiences."', 2), ('declare', 2), ('governesses', 2), ('"found', 2), ('lunched', 2), ('desborough,', 2), ('commencement', 2), ('pestered', 2), ('blundering', 2), ('grizzled,', 2), ('oh!', 2), ('bouquet', 2), ('habit,', 2), ('postmark', 2), ('got?"', 2), ('metal.', 2), ('promiscuous', 2), ('intolerable."', 2), ('shaw,', 2), ('slow,', 2), ('greyish', 2), ('calmly.', 2), ('cycle', 2), ('produce.', 2), ('convulsion', 2), ('uneasy.', 2), ('essential.', 2), ('impunity.', 2), ('already.', 2), ('slips', 2), ('chisel', 2), ('bravely', 2), ('pinch', 2), ('perhaps,"', 2), ('crop,', 2), ('devise', 2), ('alighted,', 2), ('screamed,', 2), ('warp', 2), ('upwards,', 2), ('attacked.', 2), ('enigmatic', 2), ('kills', 2), ('preservation', 2), ('"\'let', 2), ('extremity', 2), ('headed,', 2), ('hurried,', 2), ('liked?', 2), ('rounded,', 2), ('helpless.', 2), ('bluster', 2), ('degree,', 2), ('drives', 2), ('pencil:', 2), ('couch.', 2), ("hen-pheasant's", 2), ('because,', 2), ('unseen,', 2), ('carriage."', 2), ('croaked', 2), ('ormstein,', 2), ('halt,', 2), ('implicates', 2), ('breakfast?"', 2), ('latimer,', 2), ('panelling', 2), ('idea!"', 2), ('"\'i\'ll', 2), ("yours,'", 2), ('twice.', 2), ('electrical', 2), ('walk."', 2), ('huts,', 2), ("detective's", 2), ('exclusion,', 2), ('gallows', 2), ('2s.', 2), ('rainy', 2), ('undeniable', 2), ('breath.', 2), ('type', 2), ('murmured.', 2), ('pretended', 2), ('overhear', 2), ('decorated', 2), ('ten-pound', 2), ('sometimes.', 2), ('can,"', 2), ('crowd,', 2), ('spun', 2), ('ducal', 2), ('abutted', 2), ('astonished,', 2), ('ill-omened', 2), ('josiah', 2), ('pavement,', 2), ('dozen."', 2), ('filial', 2), ('pond', 2), ('found----"', 2), ('circumstance', 2), ('workman,', 2), ('unjustifiable', 2), ('difficult."', 2), ('intentness', 2), ('least."', 2), ('leg,', 2), ('coram', 2), ('smartest', 2), ('tackle', 2), ("'85,", 2), ('becomes,', 2), ('uppermost.', 2), ('tread.', 2), ('elapsed,', 2), ('distinguished.', 2), ('ease', 2), ('conceive', 2), ('quarry.', 2), ('power."', 2), ('beckenham', 2), ('shutters?"', 2), ('good?"', 2), ('zest', 2), ('predecessor', 2), ("brother's", 2), ('beckenham.', 2), ('correspond,', 2), ('aright,', 2), ('"alas!', 2), ('while,', 2), ('poaching', 2), ('fasten', 2), ('discussed', 2), ('careful,', 2), ('imprisonment', 2), ('stripped', 2), ('reigate', 2), ('stupid,', 2), ('entreaty.', 2), ('said."', 2), ('narrative."', 2), ('friday', 2), ('rung', 2), ('tower', 2), ('flopped', 2), ('"here?"', 2), ('day,"', 2), ('doings,', 2), ('fattened', 2), ('francisco,', 2), ('obtruded', 2), ("'i'm", 2), ('languid,', 2), ('smart,', 2), ('famous.', 2), ('westhouse', 2), ('elder.', 2), ('take?"', 2), ('masculine', 2), ('police-constable', 2), ('county,"', 2), ('nothing,"', 2), ('salesman,', 2), ('skill.', 2), ('crumbling', 2), ('eliminated', 2), ('handkerchief.', 2), ('fields,', 2), ('appetite', 2), ('youth.', 2), ('carriages', 2), ('bit.', 2), ('colony', 2), ('lightened', 2), ('wearily.', 2), ('weapons,', 2), ('expense.', 2), ('criminals.', 2), ("let's", 2), ('lurid', 2), ('accommodate', 2), ('learns', 2), ('shepherd', 2), ("'k.", 2), ('shown,', 2), ('provincial', 2), ('now--so', 2), ('statesmen', 2), ('vagueness', 2), ('arrive."', 2), ('suspect,', 2), ('dear.', 2), ('dwindling', 2), ('proposal', 2), ('portraits', 2), ('granite.', 2), ('craft,', 2), ('johnson', 2), ('lethargy', 2), ('gentle,', 2), ('traveled', 2), ('lunatic,', 2), ('brutality', 2), ('outbursts', 2), ('venucci,', 2), ('adler."', 2), ('raking', 2), ('gentlest', 2), ('grass-grown', 2), ('jet', 2), ('dundee', 2), ('alertness', 2), ('salesman.', 2), ('drowsy', 2), ('rack', 2), ('service."', 2), ('"here!', 2), ('calculations.', 2), ('piling', 2), ('overpowered', 2), ('volume.', 2), ('sidled', 2), ('depicted', 2), ("maid's", 2), ('parietal', 2), ("elms?'", 2), ('twenty-seven', 2), ('commissionaire', 2), ('"sherlock', 2), ("11:15.'", 2), ('stared.', 2), ('brackenstall.', 2), ('marred', 2), ('beyond,', 2), ('continent."', 2), ('origin,', 2), ('winds', 2), ('millionaire,', 2), ('"\'"i\'ve', 2), ('newcomer', 2), ('incidentally', 2), ('replaced,', 2), ('comes.', 2), ('riverside', 2), ("landlord's", 2), ('teddy', 2), ('cheerily', 2), ('hurlstone,', 2), ('whipcord', 2), ('kentish', 2), ('wharf', 2), ('tone,', 2), ('forgiven', 2), ('tiptoed', 2), ('particular.', 2), ('powder,', 2), ('encircled', 2), ('sustained', 2), ('gossip.', 2), ('paddington,', 2), ('inst.,', 2), ('freely,', 2), ('scraping', 2), ('characteristics,', 2), ('left-handed,', 2), ('floated', 2), ('forget,', 2), ('serious?"', 2), ('uneasy,', 2), ('adopt', 2), ('gladstone', 2), ('unturned', 2), ('folding', 2), ('notable', 2), ('smithy.', 2), ('friction', 2), ('piles', 2), ('stretched,', 2), ('benefit', 2), ('ease,', 2), ('hark', 2), ("stock-broker's", 2), ('hell', 2), ('diplomatic', 2), ('scott', 2), ('her!"', 2), ('savannah', 2), ('landau,', 2), ('cavendish', 2), ('circumstantial', 2), ('inscribed', 2), ('untiring', 2), ('fruit', 2), ('chip', 2), ('hollowed', 2), ('surgeon."', 2), ('akimbo,', 2), ('"nay,', 2), ('determined,', 2), ('stupor,', 2), ('stab', 2), ('lip.', 2), ('rises', 2), ("gasfitters'", 2), ('thieves!', 2), ('fogs', 2), ('1884,', 2), ('purveyor', 2), ('squatting', 2), ('patiently', 2), ('oil-lamp', 2), ('expedient', 2), ('readers,', 2), ('madam.', 2), ('cigar-holder?"', 2), ('individuality', 2), ('grave.', 2), ('cynical', 2), ('steaming', 2), ('engineer', 2), ('created', 2), ('supposition,', 2), ('seared', 2), ('self-respect', 2), ('abnormally', 2), ('swirled', 2), ('"\'at', 2), ('handsome.', 2), ('escorted', 2), ('wicked,', 2), ('potentate', 2), ('offhand', 2), ('explorations', 2), ('employer.', 2), ('geese,', 2), ('thirteen', 2), ('geese,"', 2), ('sentimental', 2), ('sunday-school', 2), ('doorway,', 2), ('christmas,', 2), ('consultations', 2), ('clergyman."', 2), ('issued', 2), ('want,"', 2), ('guides', 2), ('neighbour,', 2), ('ascendancy', 2), ('"excellent,"', 2), ('winchester,', 2), ('rest."', 2), ('assisting', 2), ('form:', 2), ('minister.', 2), ('cavendish,', 2), ('labour', 2), ('punished', 2), ("me!'", 2), ('women.', 2), ('sunken', 2), ('murmured,', 2), ("'why", 2), ('slanting', 2), ('taste.', 2), ('softer', 2), ('considerable,', 2), ('menacing', 2), ('safe?"', 2), ('mischief.', 2), ('secretive', 2), ('denial', 2), ('feeling.', 2), ('heidegger,', 2), ('corridors', 2), ('manual', 2), ('without.', 2), ('"among', 2), ('murders,', 2), ('lunch.', 2), ('skulking', 2), ('twinkle,', 2), ('moulding', 2), ('vandeleur', 2), ('new.', 2), ('manners,', 2), ('"put', 2), ('cell.', 2), ('swearing', 2), ('directory', 2), ('forger.', 2), ('dutch', 2), ('they,', 2), ('acres', 2), ('favour,', 2), ('furnished,', 2), ('foot-path', 2), ('including', 2), ('beneath,', 2), ('suffer.', 2), ('results,', 2), ("c'est", 2), ('inconvenient', 2), ('supplement', 2), ('hackles', 2), ('morocco', 2), ('interview.', 2), ("be?'", 2), ('featureless', 2), ('for?', 2), ('face."', 2), ('howl', 2), ('believed,', 2), ('rights,', 2), ('stating', 2), ('bannister,"', 2), ('seconds,', 2), ('eyelids,', 2), ('check,', 2), ('wasted."', 2), ('surrounding', 2), ('desolate', 2), ('money?"', 2), ('reparation', 2), ('cylinder.', 2), ('relapsed', 2), ('accidentally', 2), ('well-lit', 2), ('facility', 2), ('superficial,"', 2), ('wish,', 2), ('result."', 2), ('attends', 2), ('coward,', 2), ('beamed', 2), ('woods,', 2), ('fender.', 2), ('eightpence', 2), ('dingy', 2), ('hears', 2), ('thoroughly.', 2), ('temperament', 2), ('balancing', 2), ('turner."', 2), ('dint', 2), ('lot,', 2), ('occasions,', 2), ('suspecting', 2), ('tenderness', 2), ('collecting', 2), ('monotony', 2), ('methods."', 2), ('dark?"', 2), ('meant.', 2), ('numbed', 2), ('harmonium', 2), ('rigid,', 2), ('drive?"', 2), ('horsham', 2), ('quill', 2), ('cooking', 2), ("house.'", 2), ('condition,', 2), ('retort', 2), ('grains', 2), ('relatives.', 2), ('abuse', 2), ('flight."', 2), ("contrary,'", 2), ('hundred,', 2), ('rake', 2), ("hunter.'", 2), ('companions.', 2), ('menacing.', 2), ('14th', 2), ('sons', 2), ('rubber', 2), ('boards,', 2), ('anywhere,', 2), ('doubts."', 2), ('invisible,', 2), ('dangerous,', 2), ('sun,', 2), ('washed', 2), ('events."', 2), ('couple,', 2), ('glad,"', 2), ('temple', 2), ('client."', 2), ('recommend?"', 2), ('repairs', 2), ('innocence,', 2), ('done!', 2), ('epidemic', 2), ('fro', 2), ("one.'", 2), ('cleft', 2), ("ship's", 2), ('leanjawed', 2), ('"\'then,', 2), ('reproach', 2), ('say,"', 2), ('parties', 2), ('brussels', 2), ("useful.'", 2), ('tiptoes!', 2), ('sensible', 2), ('barrels', 2), ('inheritance.', 2), ('"anyhow,', 2), ('soldier."', 2), ('luck!', 2), ('saddest', 2), ('idle', 2), ('saxon', 2), ('tangible', 2), ('other?"', 2), ('ladies.', 2), ('stairs."', 2), ('protest', 2), ('erect', 2), ('landing', 2), ('death?', 2), ('employ.', 2), ('live,', 2), ('stamping', 2), ('examine,', 2), ('alice.', 2), ('slits', 2), ('aboard', 2), ('life-preserver', 2), ('200', 2), ('pots', 2), ('cross-examined', 2), ('linoleum', 2), ('cunningly', 2), ('saturday.', 2), ('tipped', 2), ('call.', 2), ('sedentary', 2), ('straighten', 2), ('unwonted', 2), ('moran."', 2), ('mouthful', 2), ('escaped.', 2), ('escaping', 2), ('morning-room', 2), ('catherine', 2), ('elbow', 2), ('openshaw.', 2), ('indulgently.', 2), ('t,', 2), ('affliction', 2), ('bed."', 2), ('jumping', 2), ('store', 2), ('verbatim', 2), ('redder', 2), ('seven.', 2), ('tenant.', 2), ('discuss.', 2), ('planking', 2), ('staff.', 2), ('conjectures', 2), ('memorable', 2), ('wrinkles', 2), ('whisper,', 2), ('profiles', 2), ('fixture', 2), ('smelled', 2), ('joseph,', 2), ('offers', 2), ('warmly,', 2), ('january,', 2), ('dog?"', 2), ('drawing-room.', 2), ('important."', 2), ('testimonial', 2), ('strolling', 2), ('uncovered', 2), ('tobacco--all', 2), ('circle,', 2), ('bound.', 2), ('statesman.', 2), ('manner."', 2), ('print.', 2), ('failed.', 2), ('own,"', 2), ('threat', 2), ('zealand', 2), ('disordered', 2), ('short-bladed', 2), ('amiable,', 2), ('gang."', 2), ('pittance,', 2), ('facial', 2), ('woodley."', 2), ('vows', 2), ('guess.', 2), ('horsham.', 2), ('filed', 2), ('bearing.', 2), ('instrument,', 2), ('wrong,', 2), ('hinges.', 2), ('chimney', 2), ('daulat', 2), ('dried-up', 2), ('gipsies,', 2), ('"\'"but', 2), ('top,', 2), ('mystery?"', 2), ('complicated.', 2), ('attack,', 2), ('stirring.', 2), ('exploits', 2), ('asperity.', 2), ('"how,', 2), ('laburnum', 2), ('orchard.', 2), ('hampstead.', 2), ('yawned', 2), ('all;', 2), ('suave', 2), ('unimportant', 2), ('surmised', 2), ('climb', 2), ('chiltern', 2), ('violently', 2), ('stabbing', 2), ('escaped."', 2), ('ned', 2), ('abandoning', 2), ('crucial', 2), ("is?'", 2), ('good-night', 2), ('"besides,', 2), ('musgrave.', 2), ('stain.', 2), ('morton', 2), ('worry', 2), ('favourably', 2), ('favourable', 2), ('la', 2), ('absent-minded', 2), ('calculation', 2), ('smoker', 2), ('typewriting.', 2), ('wept', 2), ('doing."', 2), ('stiff', 2), ('granted', 2), ('stables?"', 2), ('dressed?"', 2), ('sutherland', 2), ('array', 2), ('shaggy', 2), ('analyze', 2), ('wholly', 2), ('imprisonment,', 2), ('october,', 2), ('colors', 2), ('towns,', 2), ('a.,', 2), ('languidly', 2), ('handled,', 2), ('puzzling', 2), ('box."', 2), ('lanterns.', 2), ('veins,', 2), ('percy?"', 2), ('disguise,', 2), ('liberal', 2), ('all-important', 2), ('hebron,', 2), ('sparsely', 2), ('mere,', 2), ('decided,', 2), ('accumulated', 2), ('shoulder;', 2), ('photograph!"', 2), ('typical', 2), ('trail,', 2), ('musgraves', 2), ('englishmen', 2), ('unite', 2), ('agreed.', 2), ('entreaties', 2), ('lovers', 2), ('bridge.', 2), ('admirable.', 2), ('governess', 2), ('extent,', 2), ('"hullo!"', 2), ('antagonist', 2), ('crudest', 2), ('reconstruction', 2), ('hammersmith', 2), ('wrongfully', 2), ('lid.', 2), ('fate."', 2), ('respected', 2), ('flies', 2), ('subjected.', 2), ('vere', 2), ('memory."', 2), ('descendant', 2), ("yourself.'", 2), ('dumb', 2), ('borrow', 2), ('undetected', 2), ('pungent', 2), ('dodge."', 2), ('two,"', 2), ('waxed', 2), ('ordered,', 2), ('twenty-one', 2), ('traffic', 2), ('harpooners,', 2), ('qualities,', 2), ('shamefaced', 2), ('furiously.', 2), ('horseshoe', 2), ('tartly.', 2), ('frequent', 2), ('chase.', 2), ('bull', 2), ('cipher', 2), ('deception.', 2), ('momentary', 2), ('pained', 2), ('praises', 2), ('fright,', 2), ('killing', 2), ('tyrant.', 2), ('hunter."', 2), ('alternative?"', 2), ('relate', 2), ('politics,', 2), ('mansion', 2), ('cows.', 2), ('afterwards,"', 2), ('lengthened', 2), ('prepared.', 2), ('wires', 2), ('essential,', 2), ('loath', 2), ('entirely,', 2), ('post,', 2), ('fruitless', 2), ('hopes,', 2), ('food.', 2), ('tastes.', 2), ('unambitious,', 2), ('pay."', 2), ('impressions.', 2), ('legitimate', 2), ('inhospitable', 2), ('instep', 2), ('embassy', 2), ('college.', 2), ('attempt,', 2), ('grate', 2), ('wavering', 2), ('marbank,', 2), ('dawson', 2), ('imprudent', 2), ('deep-lined', 2), ('passers-by', 2), ('invaluable."', 2), ('suavely.', 2), ('cross-questioned', 2), ('ill-gotten', 2), ('certainly,"', 2), ('deaths', 2), ('quality.', 2), ('complexion,', 2), ('into.', 2), ('step-daughter,', 2), ('intrude', 2), ('lie."', 2), ('plucking', 2), ('heir.', 2), ('sniff', 2), ('encouraging', 2), ('riveted', 2), ('staggered,', 2), ('folks', 2), ('contemplation', 2), ('tires.', 2), ('should.', 2), ('dressing-room.', 2), ('rosenlaui,', 2), ('swim', 2), ('molested', 2), ('whither', 2), ('resolution,', 2), ('resignation.', 2), ('million', 2), ('sparkled', 2), ('decade', 2), ('underrated', 2), ('commanding', 2), ('going!', 2), ('erroneous', 2), ('indications,', 2), ('grateful', 2), ('consequence.', 2), ('unfurnished', 2), ('slippers."', 2), ('field!"', 2), ('edgeware', 2), ('twins,', 2), ('dressing-room,', 2), ('modesty', 2), ('carruthers.', 2), ('spreading', 2), ('refuge', 2), ('mister,"', 2), ('streamed', 2), ('endure."', 2), ('accessory', 2), ('balmoral,', 2), ('somewhere,', 2), ('shading', 2), ('included,', 2), ('touched."', 2), ('"maybe', 2), ('was?"', 2), ('financier.', 2), ('villainy,', 2), ('"\'don\'t', 2), ("hudson's", 2), ('greece', 2), ('peace,', 2), ('thud', 2), ("ross's", 2), ('society.', 2), ('filled.', 2), ("premier's", 2), ('under,', 2), ('fro,', 2), ('unsolved', 2), ('crates', 2), ('restlessness,', 2), ('shuttered', 2), ('attract', 2), ('clear-cut', 2), ('blacker', 2), ('flags', 2), ('bow-window', 2), ('went.', 2), ('finely', 2), ('reentered', 2), ('constable,', 2), ('different."', 2), ('agony,', 2), ('tiled', 2), ('mountain', 2), ('match?"', 2), ('slang', 2), ('conspirators.', 2), ('application', 2), ('loitering', 2), ('professor--it', 2), ('slight.', 2), ('awkward.', 2), ('adler.', 2), ('tightened', 2), ('hobby,', 2), ('securely', 2), ('likely?"', 2), ('beard?"', 2), ('arrested?"', 2), ('panelling,', 2), ('bedrooms,', 2), ('bow,', 2), ('forenoon', 2), ('deserts.', 2), ('telegram."', 2), ('screws', 2), ('sydenham,', 2), ('touching', 2), ('finished."', 2), ('counter.', 2), ('occurred?"', 2), ('compelled,', 2), ('dog!"', 2), ('on!"', 2), ('express,', 2), ('got,', 2), ('behalf', 2), ('recognizing,', 2), ('mystery,"', 2), ('nobleman,', 2), ('hunters.', 2), ('word,"', 2), ('associate,', 2), ("'p.c.'", 2), ('frightened.', 2), ('"their', 2), ('bits', 2), ('devonshire,', 2), ('customary', 2), ('loosed', 2), ('provide', 2), ("'are", 2), ('chink', 2), ('hereby', 2), ('criminal."', 2), ('misjudged', 2), ('contractor', 2), ('candles,', 2), ('directors,', 2), ('rustling', 2), ('forgotten.', 2), ('surgeon.', 2), ('chair."', 2), ('flame-coloured', 2), ('boxes,', 2), ('outstretched,', 2), ('that!--and', 2), ('buried.', 2), ('cursing,', 2), ('gripped', 2), ('owe,', 2), ('buildings', 2), ('hubbub', 2), ('nightly', 2), ('stonily', 2), ('"undoubtedly', 2), ('theorize', 2), ('community,', 2), ('reporting."', 2), ('neck."', 2), ('attention."', 2), ('yonder?', 2), ('self-evident', 2), ('"\'really,', 2), ('ago,"', 2), ('half-mad', 2), ('mail-boat', 2), ('next?', 2), ('divulge', 2), ('procure', 2), ('side-lights', 2), ('case;', 2), ('"where\'s', 2), ('disappeared."', 2), ('loathed', 2), ("'did", 2), ('free-will.', 2), ("balmoral's", 2), ('rewarded.', 2), ('purport', 2), ('shawl', 2), ('strand.', 2), ('loft.', 2), ('observes', 2), ('sailors,', 2), ('pig', 2), ('syringe', 2), ('unnecessary,', 2), ('tutor,', 2), ('compromising', 2), ('shaped', 2), ('cleverness,', 2), ('careful.', 2), ('extraction,', 2), ('luminous,', 2), ('lash', 2), ('either,', 2), ("right.'", 2), ('gravel.', 2), ('hopeless.', 2), ('warders,', 2), ('suspense', 2), ('opponent,', 2), ('unlock', 2), ('intuition,', 2), ('wife!"', 2), ('old-fashioned,', 2), ('chair!', 2), ('atlantic', 2), ('injury.', 2), ('foresight,', 2), ('treasure.', 2), ('bristol', 2), ('chesterfield', 2), ('advance,', 2), ('pattered', 2), ('strictly', 2), ('stacked', 2), ('occupied,', 2), ('precautions.', 2), ('observe,"', 2), ('activity,', 2), ('alpha."', 2), ('untenanted', 2), ('"james', 2), ('deformed', 2), ('peeled', 2), ('night-time."', 2), ('pupil', 2), ('availed', 2), ('braved', 2), ('sobbing.', 2), ('solid,', 2), ('"go', 2), ('squires,', 2), ('mistake,"', 2), ('hayter', 2), ('fainting.', 2), ('bottles.', 2), ('moment?', 2), ('abhorrent', 2), ('relations,', 2), ('ay,', 2), ('employ."', 2), ('find,"', 2), ('perils', 2), ('servitude', 2), ('fruits', 2), ('laborious', 2), ('lure', 2), ('wind,', 2), ('thorough', 2), ('life?"', 2), ('listen.', 2), ('angel?', 2), ('chinese', 2), ('assistant.', 2), ('judged', 2), ('ruined,', 2), ('scream--a', 2), ('raw', 2), ('names.', 2), ('destroyed.', 2), ('astute', 2), ('plague-spot', 1), ('knocker', 1), ('baits.', 1), ('ten-thirty', 1), ('one--the', 1), ('image,', 1), ('liver,', 1), ('biscuit,', 1), ('bramble', 1), ('cruet-stand', 1), ('averted.', 1), ('experiences,', 1), ('drawer?', 1), ('hereditary?"', 1), ('now--and', 1), ('gin-shop,', 1), ('dreamy', 1), ('children."', 1), ('niggardly', 1), ('speak,"', 1), ('"\'yes.', 1), ('bashful.', 1), ('prostration.', 1), ('tradition', 1), ('shone,', 1), ('prolong', 1), ('smell?"', 1), ('wrapped,', 1), ('light-coloured', 1), ('trenchers', 1), ('half-drawn,', 1), ('immutable', 1), ('resisting,', 1), ('voraciously,', 1), ('norbury', 1), ('text,', 1), ('rear--"', 1), ("christ's", 1), ('lied,', 1), ('adhesive,', 1), ('sutton,', 1), ('cause,', 1), ('slipper!', 1), ('splendidly', 1), ('cribs', 1), ('"madam,"', 1), ('somewhere."', 1), ('dinghy.', 1), ('acrobat', 1), ('well-grown,', 1), ('challenge', 1), ('backgammon', 1), ('shelf."', 1), ('elriges', 1), ('lifetime,', 1), ('dark,"', 1), ('meiringen', 1), ('flown.', 1), ('foreman,', 1), ('hounds.', 1), ('routine."', 1), ('briar', 1), ('how--"', 1), ('high,"', 1), ('bridegroom,', 1), ('marseilles,', 1), ('yesterday,"', 1), ('"g,"', 1), ('depositors.', 1), ('counted', 1), ('easier,', 1), ('musician,', 1), ('buzzed,', 1), ('steer', 1), ('tragedy?"', 1), ("hankey's", 1), ("nominal?'", 1), ('pets', 1), ('cuts.', 1), ('dawned', 1), ('gorot', 1), ('burden,', 1), ('innermost', 1), ('characters,', 1), ('annie?"', 1), ('arm-chair.', 1), ('publicans', 1), ('flutter', 1), ('amusement."', 1), ('sprints', 1), ('treasure-trove.', 1), ('incident,"', 1), ('ink-bottle', 1), ('furrowed', 1), ('trumpington.', 1), ('switching', 1), ('fineness', 1), ('soon.', 1), ('endure.', 1), ('threshhold.', 1), ('cock-a-doodle', 1), ('found--never,', 1), ('immensely."', 1), ('oppressed', 1), ('earth-smelling', 1), ('meadow.', 1), ('"beyond', 1), ('dealers', 1), ('blue-eyed', 1), ('complimenting', 1), ('alphabet!', 1), ('several."', 1), ('snips', 1), ('anxieties,', 1), ('now--though,', 1), ('whirling,', 1), ('spare."', 1), ('off--of', 1), ('ally.', 1), ('point,"', 1), ('molehills', 1), ('scarcely', 1), ('melancholy,', 1), ('imagination."', 1), ('"they\'ll', 1), ('warm-hearted', 1), ("6th.'", 1), ('entered--the', 1), ('pipes,', 1), ('repented', 1), ("sufficient?'", 1), ('commemorated', 1), ("are,'", 1), ('trembling,', 1), ('sphere.', 1), ('tapped.', 1), ('strangling', 1), ('permission."', 1), ('tampering', 1), ('lanner,"', 1), ('interruption--and', 1), ('advising', 1), ('mid-devon', 1), ('holmes\'s--"did', 1), ('suicide!"', 1), ('deduced,', 1), ('to-morrow,"', 1), ('sashes,', 1), ('sacred.', 1), ('self-contained,', 1), ('successes?"', 1), ('deaf', 1), ('inclinations', 1), ('driving-wheel', 1), ('wearied', 1), ('photography,', 1), ('ridiculously', 1), ('absent-minded,', 1), ('gentle.', 1), ('lee,"', 1), ('stream,', 1), ('hasp,', 1), ('bury', 1), ('dagger', 1), ('strong--and', 1), ('scrap-books', 1), ('hooked', 1), ("work's", 1), ('temperament--had', 1), ('inimitably.', 1), ('gossiping!', 1), ('orders."', 1), ('so--suppose', 1), ('porters', 1), ('bloodhound', 1), ('opinions,', 1), ('post-mark.', 1), ('shards,', 1), ('doubly', 1), ('finger-glasses', 1), ('implacable', 1), ('ill--gentlemen,', 1), ('aroused?', 1), ('partition', 1), ('records."', 1), ('simpson.', 1), ('thumped', 1), ('furnishing', 1), ('sorts', 1), ('ore.', 1), ('bronze-colored', 1), ('bland,', 1), ('advertise."', 1), ('saved!"', 1), ('guttered."', 1), ('amused."', 1), ('toller!"', 1), ('workpeople', 1), ('freckled', 1), ('compete', 1), ('withdraw.', 1), ('instructive.', 1), ('elegantly', 1), ('hunts', 1), ('employing,', 1), ('huntsman,', 1), ('furlongs).', 1), ('harried', 1), ('guilty?"', 1), ("shake-down.'", 1), ('madly,', 1), ('deeply."', 1), ('brewing,', 1), ('knows."', 1), ('visitors."', 1), ('going,"', 1), ('equanimity.', 1), ('bet,', 1), ('hear.', 1), ("answer.'", 1), ('room;', 1), ('treasure,', 1), ('empty,"', 1), ('imprudent,', 1), ('spine,', 1), ('mankind,', 1), ('common-sense.', 1), ('surmise.', 1), ('allowance.', 1), ('falling,', 1), ('guardian', 1), ('unfounded.', 1), ('swaggered', 1), ('crash.', 1), ('withdrew,', 1), ('rotten', 1), ('shape--a', 1), ('insanely.', 1), ("coachman's", 1), ('white-haired', 1), ('blotched', 1), ('merchant-man', 1), ('sleepy,', 1), ('nipped,', 1), ('role', 1), ('apprenticed', 1), ('used,"', 1), ('drowned', 1), ('showed,', 1), ('enthralled.', 1), ('food?"', 1), ('guessed."', 1), ('drabs', 1), ('possessed.', 1), ('explanations,"', 1), ('reincarnation.', 1), ('bandages.', 1), ('retrieving', 1), ('partner,"', 1), ('"one?"', 1), ('may--he', 1), ('spike', 1), ('limped--he', 1), ('humoured', 1), ('parson.', 1), ('intensity.', 1), ('forehead;', 1), ('marriage?"', 1), ('"victor', 1), ('conversing', 1), ('wrecked', 1), ('red-brick', 1), ('"followed!', 1), ('fly,', 1), ('vigorous.', 1), ('lass', 1), ('starkly', 1), ('munro,"', 1), ('sunlight;', 1), ('memoirs,', 1), ('grass-plot', 1), ('"dear,', 1), ('pondering', 1), ('easily!"', 1), ('paulo,"', 1), ('thinks,', 1), ('"something', 1), ('ft.', 1), ('solved."', 1), ('page-boy.', 1), ('listened."', 1), ('profession."', 1), ('vestas.', 1), ('solid."', 1), ("fiver,'", 1), ('vestry.', 1), ('disorder,', 1), ("balmoral.'", 1), ('refuse,', 1), ("importance.'", 1), ('visited,', 1), ('bravado?', 1), ('supplication.', 1), ('asphalt;', 1), ('agencies', 1), ('sideways,', 1), ('pomp', 1), ('jangled', 1), ('sounds,', 1), ("governess?'", 1), ('"driving', 1), ('absentees.', 1), ('star', 1), ('sealed,', 1), ('coach-house.', 1), ('bait', 1), ('light;', 1), ('forestalling', 1), ('power:', 1), ('balzac', 1), ('enthusiasm.', 1), ('mutton,', 1), ('hour?"', 1), ('sharp-featured', 1), ('burrow.', 1), ('list,', 1), ('newcomer,', 1), ('full-length', 1), ('peremptory', 1), ('express.', 1), ('radiations,', 1), ('difference,', 1), ("'not", 1), ('discovery."', 1), ('quarters!', 1), ('it--who', 1), ('approval.', 1), ("beauty?'", 1), ('exultant', 1), ('acceptable', 1), ('coping.', 1), ('scaled', 1), ('heart-broken', 1), ('saw."', 1), ('cart,', 1), ("tut!'", 1), ('coaching', 1), ('9:13.', 1), ('cabman."', 1), ('scrutinized', 1), ("coat's", 1), ('4:35', 1), ('attractions.', 1), ('repeat,', 1), ('loser,', 1), ('stroll,', 1), ('bell-pull', 1), ('accommodating', 1), ('trouser.', 1), ('forerunners', 1), ("peterson's", 1), ('made?', 1), ("peter's", 1), ('fulfilment.', 1), ('betaken', 1), ('pleaded,', 1), ('self-absorption.', 1), ('investigations?"', 1), ('meredith,', 1), ('greetings', 1), ('pinner!"', 1), ('three-forty', 1), ('tether', 1), ('ask?"', 1), ('murillo,', 1), ('name--had', 1), ('gagged', 1), ('several.', 1), ('tracked.', 1), ('villainous', 1), ('defect--was', 1), ('happiest', 1), ('sights.', 1), ('overtaking', 1), ("'87?", 1), ('quiet;', 1), ('"tadpole"', 1), ('unexplained', 1), ('light-gray', 1), ('placed.', 1), ('ash?"', 1), ('board-schools."', 1), ('barclays--the', 1), ('stealth."', 1), ('despatch', 1), ('associated.', 1), ('tracery', 1), ('partie', 1), ('moved?"', 1), ('trifle--"', 1), ('day--it', 1), ('yesterday--that', 1), ("eleven-o'clock", 1), ('impulsive', 1), ('dark-coloured', 1), ('backs,', 1), ('murder--stopped', 1), ('tool-house.', 1), ('inexhaustible', 1), ('empowered', 1), ('moustache.', 1), ("fields.'", 1), ('flowers."', 1), ('derbyshire,', 1), ('timing', 1), ('dispel', 1), ('"tragic,', 1), ('barricade', 1), ('tout,', 1), ('tops', 1), ('"next', 1), ('askance,', 1), ("buy.'", 1), ('rhododendrons', 1), ('delirious,', 1), ('fish,', 1), ('pace?', 1), ('nothing--nothing!', 1), ('england?"', 1), ('freckles', 1), ('oscillated', 1), ('county."', 1), ('tweed-suited', 1), ('insensible.', 1), ('horace,', 1), ('successfully,', 1), ('dark-lantern.', 1), ('list!', 1), ('graphic:', 1), ('lengthened,', 1), ('"game', 1), ('deserting', 1), ('explored,', 1), ('3rd', 1), ('data!', 1), ('portsmouth', 1), ('insanely,', 1), ('misanthropy,', 1), ('brokers', 1), ('beddington', 1), ('enter.', 1), ('ostensibly', 1), ('under-gardener,', 1), ('tragedy?', 1), ('resisting', 1), ('representative', 1), ('bait,', 1), ("'90,", 1), ('haughty', 1), ('"king\'s', 1), ('crystals.', 1), ('believe?"', 1), ('bandy', 1), ('"\'your', 1), ('strength."', 1), ('shop?"', 1), ('honorable', 1), ('half-confidences', 1), ("five?'", 1), ('remonstrance', 1), ('beauties.', 1), ('stories,', 1), ('nouveaux', 1), ('office."', 1), ('money!"', 1), ('booming?"', 1), ('above;', 1), ('issue."', 1), ('pugnacious', 1), ('bookworm', 1), ('obstacle.', 1), ('black-eyed', 1), ("fattest.'", 1), ("'here", 1), ('curse,', 1), ('wadding', 1), ('checkered', 1), ('kilburn,', 1), ("it'll", 1), ('palace,', 1), ('wives', 1), ('transcribing', 1), ('less!', 1), ("with.'", 1), ("turn,'", 1), ('bequest', 1), ('top."', 1), ('arcadia', 1), ('gasp,', 1), ('hearth-rug.', 1), ('foolscap.', 1), ('divert', 1), ("woman.'", 1), ('o."', 1), ('revolver,"', 1), ('profitably', 1), ("also.'", 1), ('tug', 1), ('probabilities', 1), ('gently,', 1), ('hurt?"', 1), ('refreshingly', 1), ('epicurean', 1), ('luncheon.', 1), ('deference.', 1), ('dictating.', 1), ('autocrat.', 1), ('elementary,', 1), ('universities,', 1), ('remonstrance.', 1), ('number?', 1), ('bell-ropes,', 1), ('cause?', 1), ('riser,', 1), ('scene."', 1), ('sealer."', 1), ('bodies,', 1), ('impersonating', 1), ('infamous', 1), ('refresh', 1), ('inscrutable.', 1), ('grimpen:', 1), ('significant', 1), ('sifting', 1), ('plank', 1), ('brougham?"', 1), ('bony', 1), ('notices', 1), ('lee."', 1), ('ivory-handled', 1), ('apaches,', 1), ('inoffensive.', 1), ('mister!', 1), ('devotedly', 1), ('"misfortunes', 1), ('beggary,', 1), ('vizard', 1), ('ferrier', 1), ("cabman's", 1), ('ostler,', 1), ('soundly,', 1), ('riverside,', 1), ('wallenstein,', 1), ('portrait."', 1), ('explanatory', 1), ("word.'", 1), ('dexterity.', 1), ('cries.', 1), ('mangled,', 1), ('"\'so,', 1), ('fugitives,', 1), ('heir-at-law,', 1), ('wrestling', 1), ("essential,'", 1), ('bhurtee.', 1), ('clever.', 1), ('mind--well,', 1), ('tremendously', 1), ('essential--essential,', 1), ('reproachfully', 1), ("luck!'", 1), ("weeks.'", 1), ('smear', 1), ("office!'", 1), ('hurt?', 1), ('grip--that', 1), ('curious--is', 1), ('atavism', 1), ('lad--a', 1), ('only--oh,', 1), ('randall,"', 1), ('firs', 1), ('accomplish', 1), ('low?"', 1), ('years--i', 1), ('agrees', 1), ('agency,', 1), ("india!'", 1), ('"awake,', 1), ('versatility', 1), ('lucrative', 1), ('europe--"', 1), ('cusack--and', 1), ('shades', 1), ('philosopher,', 1), ('counterfoils,', 1), ('butterflies.', 1), ('"married!', 1), ('(and', 1), ('them--and', 1), ('well?"', 1), ('incredulity.', 1), ('likeness,', 1), ('unsafe', 1), ('pale-looking.', 1), ('xxx.', 1), ('remonstrate', 1), ('malignantly', 1), ('myself!"', 1), ('carolina,', 1), ("town?'", 1), ('matter--a', 1), ('react', 1), ('theatre', 1), ('classic', 1), ('station!', 1), ('her--both', 1), ('alexis.', 1), ('depleted', 1), ('embellishments', 1), ('spy."', 1), ('gas-pipes.', 1), ('pane,', 1), ('shrubbery.', 1), ('beam,', 1), ('passers-by,', 1), ('conduct?"', 1), ('convincing,', 1), ('frantically,', 1), ('narrowing', 1), ('isa.', 1), ('inclement.', 1), ('capacity,"', 1), ('invite', 1), ('extinct', 1), ('canary-trainer,', 1), ("lady!'--you", 1), ('harris', 1), ('boa', 1), ('incriminating', 1), ('roundabout', 1), ("sundial?'", 1), ('bee-farming', 1), ('police-station,', 1), ('provisions', 1), ('heart--so', 1), ('moonless', 1), ("life's", 1), ('corner."', 1), ("flock.'", 1), ('women-folk.', 1), ('lift', 1), ('yearned', 1), ('amoy', 1), ('baby,', 1), ('cloud-wreaths', 1), ('peremptorily', 1), ('meals,', 1), ('door-mat.', 1), ('foot-pads,', 1), ('rattled,', 1), ('smashed."', 1), ('leverstoke,', 1), ('hopkins?', 1), ('robberies,', 1), ('vigil.', 1), ('coins.', 1), ('directed."', 1), ('flabbiness', 1), ('bride.\'"', 1), ('conclusions,"', 1), ('unclaspings', 1), ('following,', 1), ('betting-book', 1), ('genii', 1), ('"remember', 1), ("again'--here", 1), ('developed.', 1), ('swain', 1), ('dark-gray', 1), ('whistles,', 1), ("walk,'", 1), ('voilà', 1), ('veteran', 1), ('undergraduates,', 1), ('crux.', 1), ('meunier,', 1), ('laudanum', 1), ('found,"', 1), ('certainties,', 1), ('digesting', 1), ('750', 1), ('drills,', 1), ('languages', 1), ('handcuffs,', 1), ('discs.', 1), ('forts', 1), ('quarrel?', 1), ('outstanding,', 1), ('"sold', 1), ('queerer', 1), ('mother!', 1), ('"however,', 1), ('enraged', 1), ('objects,', 1), ('taught', 1), ('"exceedingly', 1), ('leone', 1), ('holmes--that', 1), ('brandy-flask', 1), ('improving', 1), ('betrothal', 1), ('terrace,', 1), ('cannon', 1), ('ostrich-feather', 1), ('associates,', 1), ('villagers,', 1), ('hoofs.', 1), ('white-faced,', 1), ('increased,', 1), ('wilson"', 1), ('promises----"', 1), ('arizona,', 1), ('"d\'you', 1), ('fiery,', 1), ('razor', 1), ("wink!'", 1), ('seat."', 1), ('contraction?', 1), ('comrades', 1), ('reedy,', 1), ('neighbourhood?"', 1), ('hillsides', 1), ("uncle?'", 1), ('remedied,', 1), ('framing', 1), ('immaterial.', 1), ('thorsley,', 1), ('girlie,', 1), ('grievance,"', 1), ('delusion,', 1), ('cusack,', 1), ('covers', 1), ('him--you', 1), ('light-house.', 1), ('row.', 1), ('carston', 1), ('carcass', 1), ('porticoed', 1), ('herefordshire', 1), ('parlour,', 1), ('youthful', 1), ('side-slip,"', 1), ('disagreements', 1), ('degrees,', 1), ("'sir,'", 1), ('"idiot', 1), ('goods.', 1), ('"\'"it\'s', 1), ('broadest', 1), ('gloomily.', 1), ('converse', 1), ('ill-used,', 1), ('epitome', 1), ('stove.', 1), ('distractions,"', 1), ('headlines:', 1), ('syringe.', 1), ('fulfillment', 1), ('harrow.', 1), ('aisle', 1), ('waves.', 1), ('amiable.', 1), ('thereof', 1), ('twice-told', 1), ('bellowed', 1), ('girth', 1), ('there--patrick', 1), ('shrimp', 1), ('unfortunate.', 1), ('attics,', 1), ('busy,', 1), ('lothman', 1), ('soft-nosed', 1), ("i,'", 1), ('refuse."', 1), ('four-and-twenty."', 1), ('"\'never!\'', 1), ('fowls,', 1), ('painful.', 1), ('courtyard.', 1), ('wigs', 1), ('clarendon', 1), ('ape,', 1), ('postman.', 1), ('heirs', 1), ('southsea.', 1), ('unecclesiastical.', 1), ('carlton,', 1), ('committee,', 1), ('done--had', 1), ('cigar-ends', 1), ('name!"', 1), ('dyspnoea', 1), ('scar,', 1), ('seem,', 1), ('"athens,', 1), ("remains--'stand", 1), ('haunches', 1), ('escapade', 1), ('refreshment."', 1), ("a-walkin'", 1), ('inconsequential', 1), ("'see", 1), ('home--a', 1), ('"seven!"', 1), ('dangerously', 1), ('valets', 1), ('guidance,', 1), ('curtly.', 1), ('ruffianly', 1), ('speak."', 1), ('"pending', 1), ('himself--his', 1), ('bizarre,', 1), ('cape', 1), ('one-twenty.', 1), ('"strand', 1), ('maxillary', 1), ('capsules', 1), ('plum-coloured', 1), ('traveler,', 1), ('slate-gray', 1), ('transpired', 1), ('past."', 1), ('expected,"', 1), ('gemmi,', 1), ('carriage,"', 1), ('"yesterday,', 1), ('know--that', 1), ('athlete.', 1), ('grunted', 1), ('confederate--save,', 1), ('"circumstantial', 1), ('charming,', 1), ('wrack', 1), ('face--crafty,', 1), ('bludgeons', 1), ('"between', 1), ("suppose.'", 1), ('enter."', 1), ('trophies.', 1), ('conceit,"', 1), ("'that's", 1), ('stoat', 1), ('dabbling', 1), ('pleasing', 1), ('liquid,', 1), ('guiltless', 1), ('pedestrians.', 1), ('geology', 1), ('raining.', 1), ('silver.', 1), ('righted,', 1), ('ingratiating', 1), ("'87.", 1), ("precaution.'", 1), ("pit.'", 1), ('depends.', 1), ('disfigured.', 1), ('"ham', 1), ('showy', 1), ('rendezvous,', 1), ('"wanted,', 1), ('siberia.', 1), ('kit."', 1), ('rocking-chair,', 1), ('injured?', 1), ("souls!'", 1), ('portuguese', 1), ('tickets', 1), ('paid,', 1), ('pitched', 1), ('knoll', 1), ('increasingly', 1), ('baker?"', 1), ('holder?"', 1), ('infamous.', 1), ('good-bye,"', 1), ('twisting', 1), ('pie', 1), ('windibank!"', 1), ('advisable', 1), ('pens,', 1), ('beaten."', 1), ('interrupted."', 1), ('rope,', 1), ('newcastle;', 1), ('lichen-blotched', 1), ('called.', 1), ('to?', 1), ('grabbed', 1), ('exact."', 1), ('lords', 1), ('vex', 1), ('fence.', 1), ('tailor', 1), ('embassy.', 1), ('relation,', 1), ('passes,', 1), ('happy.', 1), ('owner--and', 1), ('eight-knot', 1), ('performance.', 1), ('cleaners.', 1), ('reeked', 1), ('van.', 1), ('carey."', 1), ('indentation', 1), ("curiosity.'", 1), ('horsey', 1), ('pennsylvania,', 1), ('cloak."', 1), ('wide-awake', 1), ('paint.', 1), ('emaciation', 1), ('slate-coloured,', 1), ("forgotten.'", 1), ('action--the', 1), ('sonorous', 1), ('avail.', 1), ('innocence', 1), ('supersede', 1), ('ruined.', 1), ('12:22', 1), ('stevens,', 1), ('first;', 1), ('"coming', 1), ('bowling-alley,"', 1), ('earshot.', 1), ('expectation.', 1), ('reader."', 1), ('correspondence.', 1), ('"\'hampshire.', 1), ('explosion,', 1), ('obese', 1), ('sir--yes.', 1), ('devil!"', 1), ('precious,', 1), ('baddish', 1), ('knives--all', 1), ('reappeared,', 1), ('pen-knife', 1), ('rhone,', 1), ('press:', 1), ('rough-haired,', 1), ('opium-smoking', 1), ('backwards', 1), ('fastened."', 1), ('cultivated,', 1), ('blood-bespattered', 1), ('men?', 1), ('gate-lamp,', 1), ('overhead.', 1), ('and--to', 1), ('breathless', 1), ('damned', 1), ('smoke-laden', 1), ("joke,'", 1), ('sunshine!"', 1), ('handbag', 1), ('reasoner,', 1), ('appointed.', 1), ('exceeded', 1), ('moisten', 1), ('hovered', 1), ('"9th.', 1), ('"another', 1), ('game,', 1), ('coolness', 1), ('creina,', 1), ('traces."', 1), ('moran?"', 1), ("'h.", 1), ('cobwebs', 1), ('elsie?', 1), ('plethoric', 1), ('forearms.', 1), ('sheep-dog."', 1), ('ambition,', 1), ('statements', 1), ('tonight?', 1), ('bayonets.', 1), ('many?', 1), ('aluminium', 1), ('good-morning', 1), ('depth,', 1), ('edition.', 1), ('visibly', 1), ('dull--less', 1), ('pillow', 1), ('ulster.', 1), ('tankerville,', 1), ("custom,'", 1), ("feared!'", 1), ('not;', 1), ('work--that', 1), ('against."', 1), ('goyal,', 1), ('temperature,', 1), ('4th,', 1), ('bull.', 1), ('apoplexy.', 1), ('square;', 1), ('\'please.\'"', 1), ('barton,', 1), ('arm?"', 1), ('prostrated', 1), ('cooped', 1), ('shed?"', 1), ('first-class,', 1), ('letters,"', 1), ('wreath', 1), ('apt', 1), ('10s.', 1), ("england?'", 1), ('crumbly', 1), ("sundial,'", 1), ('plunder,', 1), ('hat-stand', 1), ('overtaken,', 1), ('egypt,', 1), ('dewlap', 1), ('assaults,', 1), ('delirium,', 1), ('conjure', 1), ('candle?', 1), ('use.', 1), ('sister;', 1), ('pouches,', 1), ('surrey?"', 1), ('birmingham?', 1), ("'remarkable", 1), ('solutions', 1), ('misses', 1), ('ravaged', 1), ('pulley', 1), ("monday.'", 1), ('crazy--this', 1), ('wonders', 1), ('commencement.', 1), ('directed.', 1), ('staring,', 1), ('broadened.', 1), ('failure,', 1), ('knickerbockers,', 1), ('mercenary', 1), ('size.', 1), ('privet', 1), ('hung,', 1), ('need,', 1), ('blessing', 1), ('morning?', 1), ('highway,', 1), ('pupils,', 1), ('finns', 1), ('straitjacket.', 1), ('jumping-pit', 1), ('eleven-thirty', 1), ('author.', 1), ('sheath.', 1), ('pallor,', 1), ('outward-bound', 1), ('crab,', 1), ('wallowed', 1), ('palladio.', 1), ('16th.', 1), ('cunningham."', 1), ('congrat----"', 1), ("billet.'", 1), ('perform,', 1), ('doubt?"', 1), ('troubles."', 1), ('priest', 1), ('germans.', 1), ('discomforts', 1), ('contrition', 1), ('tar', 1), ('notion.', 1), ('abstract', 1), ('exultantly.', 1), ('channels', 1), ('hatpin.', 1), ('reconstruction.', 1), ('azure,', 1), ('right!"', 1), ("stopped.'", 1), ('entirely,"', 1), ("remo.'", 1), ('oranges', 1), ('sketches,', 1), ('barrymore--"', 1), ('forty-eight', 1), ('green-room', 1), ('temples', 1), ("remember,'", 1), ('rescue', 1), ('clearly."', 1), ('entry.', 1), ('confederate?', 1), ('though;', 1), ('undercut', 1), ('hearthrug.', 1), ('villain.', 1), ('etherege,', 1), ('unswathed', 1), ('college."', 1), ('danger-signals.', 1), ('on!', 1), ('independently,', 1), ('bullying', 1), ('murray,', 1), ("'crime", 1), ('robust."', 1), ('glass."', 1), ('prices', 1), ('coughing', 1), ('gold-digger,', 1), ('kennelled', 1), ('derivatives,', 1), ('violently.', 1), ('impede', 1), ('premises.', 1), ('oct.', 1), ('bradshaw.', 1), ('method,"', 1), ('buffalo', 1), ('grossly', 1), ('far-away,', 1), ('ventilator.', 1), ('b."', 1), ('3d', 1), ('shirt.', 1), ('reckoning', 1), ('coffee?"', 1), ('orgies', 1), ('exploit.', 1), ('prayer-book', 1), ('flames', 1), ('out-house,', 1), ('"read', 1), ('situated,', 1), ('13th.', 1), ("'then", 1), ('resisted.', 1), ('adviser,', 1), ('countenances.', 1), ('uninteresting,', 1), ('slept.', 1), ('wide-stretching', 1), ('bizarre.', 1), ('pauper;', 1), ('returning.', 1), ('topmost', 1), ('world--the', 1), ('truth,"', 1), ('actor', 1), ('"\'seven', 1), ('yelled,', 1), ("musgrave,'", 1), ('reverently', 1), ('damage', 1), ('weak."', 1), ('cattle.', 1), ("nobody's", 1), ('image-breaker', 1), ('jackal,', 1), ('investigation?"', 1), ('ill-fated', 1), ('cup--silver', 1), ('side-whiskers.', 1), ('moors', 1), ('stocked', 1), ("bentley's", 1), ('salle-à-manger', 1), ('feasible', 1), ('slaughter-house', 1), ("'to,'", 1), ('discreet.', 1), ('chimney.', 1), ('"\'precisely.\'', 1), ('nervousness,', 1), ('night-dress.', 1), ('pacify', 1), ('villainy!', 1), ('charities.', 1), ('sovereign,', 1), ('instant!', 1), ('stinking', 1), ('vain."', 1), ('employed."', 1), ('armitage--percy', 1), ('another--a', 1), ('scenery,', 1), ('debts,', 1), ('mire?"', 1), ('pumpkin.', 1), ("legal.'", 1), ('classifying', 1), ('encouraged', 1), ('groove.', 1), ('"pshaw,', 1), ("2473.'", 1), ('farm-house', 1), ('missed.', 1), ('perpetrators.', 1), ('journeys,', 1), ('blotted,', 1), ('insects.', 1), ('baker,"', 1), ('responses', 1), ('cost?"', 1), ('assizes."', 1), ('doctor."', 1), ('luck.', 1), ('naval.', 1), ('scissors.', 1), ('sentiment?"', 1), ('rested,', 1), ('response', 1), ('passage--steps', 1), ('tunes', 1), ('residents', 1), ('locally,', 1), ('hand-and-foot', 1), ('rumpled,', 1), ('been?', 1), ("sir?'", 1), ('foresight,"', 1), ('radiant.', 1), ('queenly,', 1), ('waiting!', 1), ('gossiping', 1), ('reverberating', 1), ('nancy!"', 1), ('worker.', 1), ('victims', 1), ('writ.', 1), ('minds.', 1), ('whimper.', 1), ('clear--it', 1), ('appreciation."', 1), ('different.', 1), ('unimpeachable', 1), ('cushion', 1), ('gas-light', 1), ('darlington', 1), ('success--i', 1), ('layer', 1), ('ex-clergyman,', 1), ("three!'", 1), ('shattered.', 1), ('sweetheart?', 1), ('blanche."', 1), ('suggests--halloa,', 1), ('forth--which', 1), ('supplier.\'"', 1), ('foot-marks:', 1), ('roof-tree', 1), ('recoiled', 1), ('correspondent.', 1), ('gallop.', 1), ('"good!"', 1), ('superimposing', 1), ('diagrams,', 1), ('mushroomed', 1), ('trade?"', 1), ('mere.', 1), ('enhanced.', 1), ("here,'", 1), ('red-handed.', 1), ('unambitious', 1), ('yarned', 1), ('tails', 1), ('wintry', 1), ('lodgers."', 1), ('semicircle', 1), ('consequence?"', 1), ('"gum,"', 1), ('clambering', 1), ("pinner,'", 1), ('fringe.', 1), ('eventuality', 1), ('important?"', 1), ('man-handled', 1), ('red-head', 1), ('neck?"', 1), ('divorce?"', 1), ('needed."', 1), ('deposes', 1), ('faulty.', 1), ('holdhurst?"', 1), ('altered."', 1), ('reply:', 1), ('cornelius.', 1), ("'85.", 1), ('drop.', 1), ('geniality', 1), ("trust.'", 1), ('affected,', 1), ('ridiculous', 1), ('sensitive.', 1), ('cashed', 1), ('flower-bed.', 1), ('charcoal,"', 1), ('develops.', 1), ('wagon-driver,', 1), ("drunkard's", 1), ('horn-handled', 1), ('whist,', 1), ('unoccupied', 1), ('marauding', 1), ('footing?"', 1), ('prima', 1), ('twenty-nine,', 1), ('girl."', 1), ('meet.', 1), ('limped', 1), ('vintage', 1), ('"more', 1), ('torrent,', 1), ('footprints,', 1), ('perhaps--upon', 1), ('strand."', 1), ('alec,"', 1), ('balance,', 1), ('canteen.', 1), ('jones.', 1), ('professionally,', 1), ('fog-wreaths', 1), ('faithless', 1), ('cringe', 1), ('emperor,', 1), ('eye;', 1), ('incisive,', 1), ('spent!"', 1), ('interruption', 1), ('differently', 1), ('adventures."', 1), ('momentous', 1), ('stone-strewn', 1), ('act--he', 1), ('spanish-american', 1), ('texture', 1), ('forgetfulness', 1), ('associating', 1), ('scott_.', 1), ('privately', 1), ('postmarks', 1), ('talents', 1), ('fled,', 1), ('recapitulated', 1), ('reasoner,"', 1), ('settee,', 1), ('thigh.', 1), ('replaced.', 1), ('repressing', 1), ('abjure', 1), ('scruple', 1), ('(1881);', 1), ('monomaniac.', 1), ('baker.', 1), ('meet,', 1), ('stroud', 1), ('indicate,', 1), ('tarlton,', 1), ('airy', 1), ('charing,', 1), ('supposing,', 1), ('lovers.', 1), ('housekeeper."', 1), ('oak-panelled', 1), ('pitch-dark', 1), ('buzz', 1), ('divined', 1), ('radiance', 1), ('whitewashed,', 1), ('agent--that', 1), ('budges', 1), ('ticket,', 1), ('19th."', 1), ('bloody,', 1), ('mischance', 1), ('welted', 1), ('leeds', 1), ('bridegroom.', 1), ('midday.', 1), ('running,"', 1), ('luxuries,', 1), ('door!"', 1), ('agricultural', 1), ('ross."', 1), ('charitable,', 1), ('weep', 1), ("different.'", 1), ('admiralty', 1), ('envelope,"', 1), ('telegraph-office?', 1), ('reproved', 1), ('circulation', 1), ('1900.', 1), ('unnatural.', 1), ('"possibly,', 1), ('"bless', 1), ('1730."', 1), ('defied', 1), ('codes', 1), ('cylinder,', 1), ('over-bright', 1), ('remembers', 1), ('easy.', 1), ('luckiest', 1), ('affecting', 1), ('horror-struck', 1), ('alexandrian', 1), ('cigars.', 1), ('light,"', 1), ('wizened,', 1), ('cup.', 1), ("atavism'", 1), ('assistants.', 1), ('ambitious', 1), ('spur', 1), ('ones."', 1), ('galloping', 1), ('unguarded?', 1), ('fearsome', 1), ('rascal,', 1), ("marcini's", 1), ('exert', 1), ('deliberation', 1), ('broad-pointed', 1), ('demented', 1), ('performing', 1), ("heaven!'", 1), ('fraser--for', 1), ('measurement.', 1), ('lie;', 1), ('unstained.', 1), ('passionate.', 1), ('eater', 1), ('villains.', 1), ('wedding-clothes', 1), ('mark!"', 1), ('handle-bar,', 1), ('playing,', 1), ('attica,', 1), ('"rather', 1), ('"captain', 1), ('smoke-rocket,', 1), ('sadder;', 1), ('famous,', 1), ('fittings', 1), ('spirit-lamp.', 1), ('commonplace;', 1), ('logical,', 1), ('apologise', 1), ('corners.', 1), ('society--had,', 1), ('pensioners', 1), ('stronger."', 1), ('errand."', 1), ('compliance', 1), ('brackenstall--it', 1), ('snuffbox', 1), ('supplies.', 1), ('bell--which', 1), ('fabrication,', 1), ('kettle.', 1), ('gloucester.', 1), ('sociable', 1), ('alike?"', 1), ('moved!"', 1), ('inscribed.', 1), ('concentration.', 1), ('closed."', 1), ('bottles,', 1), ('length----"', 1), ('securely.', 1), ('hiding-place--a', 1), ('subjoined', 1), ('betraying', 1), ('earnest.', 1), ("come.'", 1), ('of!"', 1), ('bearing--a', 1), ('impatiently,', 1), ('loungers,', 1), ('indefatigable', 1), ('cultivate', 1), ("lloyd's", 1), ('lead.', 1), ('ulster,', 1), ('"1884."', 1), ('seventeenth', 1), ('it--as,', 1), ('much!"', 1), ('foreman;', 1), ('table--a', 1), ('surgery,', 1), ('lodgings.', 1), ('at."', 1), ('defiantly.', 1), ('obviously,', 1), ("monica,'", 1), ('applause.', 1), ("born.'", 1), ('proceeding.', 1), ("ye,'", 1), ('clanged', 1), ('envelopes', 1), ('visits,', 1), ('livid,', 1), ('browbeat', 1), ('furthest.', 1), ('"it--it\'s', 1), ("see?'", 1), ('sticks.', 1), ('enlarged', 1), ('suffered."', 1), ('ill-dressed', 1), ('hardship.', 1), ('butt.', 1), ('eat."', 1), ('hafiz', 1), ('stair,"', 1), ('shingle-roofed,', 1), ('easier.', 1), ('kramm."', 1), ('conspicuously', 1), ('linoleum.', 1), ('incomplete."', 1), ('booming', 1), ('possibility.', 1), ('pillars', 1), ('exertions.', 1), ('joy,', 1), ('mouse-coloured', 1), ('dealings', 1), ('paragraphs', 1), ('husband--a', 1), ('"extremely', 1), ('sprig', 1), ('agile,', 1), ('self-control', 1), ('rise."', 1), ('limit,', 1), ('mine--"', 1), ('mechanic,', 1), ('railway-carriage,', 1), ("'do", 1), ('confession,', 1), ('impressions--no!', 1), ('without,"', 1), ('close."', 1), ('well-esteemed', 1), ('volcano.', 1), ('lustreless', 1), ('chiswick,', 1), ('hers?"', 1), ('extinct--in', 1), ('self-poisoner', 1), ('horror--burst', 1), ("jeweller's", 1), ('leads,', 1), ('sparkling', 1), ('skillfully', 1), ("impossible,'", 1), ('absconding', 1), ('travelled,', 1), ('spare?', 1), ('altar."', 1), ('attack?"', 1), ('himself?"', 1), ('gun-room', 1), ('should,"', 1), ('america,"', 1), ('unconscious.', 1), ('barber.', 1), ('sneak', 1), ('"\'come!', 1), ('serpent,', 1), ('"stapleton', 1), ('clinking.', 1), ('seal-skin', 1), ('crenelated,', 1), ('moustache;', 1), ('cases--but,', 1), ('tune', 1), ('russian,', 1), ('expressed.', 1), ('respect.', 1), ('indies.', 1), ('think?"', 1), ('piece-work', 1), ('foundered.', 1), ('blaze,', 1), ('exploring', 1), ('possessor', 1), ('thousands."', 1), ('tantalus', 1), ('cleans', 1), ('rapt', 1), ('profile,', 1), ('markings', 1), ('yards,', 1), ('instructive."', 1), ('maids.', 1), ('nonpareil', 1), ('calmly;', 1), ('grating', 1), ('buy.', 1), ('fractured', 1), ('sheet!"', 1), ('punctually', 1), ('discoloured,', 1), ('grip.', 1), ('voices,', 1), ('ambition', 1), ('quaint', 1), ('was--a', 1), ("angel's", 1), ('gag', 1), ('summarise.', 1), ('manoeuvres', 1), ('law;', 1), ('nucleus', 1), ('six-foot', 1), ('bell-pull,', 1), ('half-wages,', 1), ("lantern.'", 1), ('flow', 1), ('shamefully,', 1), ('couple."', 1), ('woolly', 1), ('deliciously', 1), ('firmer', 1), ('blackwater,', 1), ('undertook', 1), ("tinker's.", 1), ('surmises', 1), ('bright-looking,', 1), ('interference,', 1), ('good-bye!"', 1), ('26s.', 1), ('slogging', 1), ('undulations', 1), ('thick-iron', 1), ('fish-monger', 1), ('sacred,', 1), ('tricky', 1), ('unprofitable."', 1), ('pose', 1), ('john;', 1), ('ebbing', 1), ('colonel!', 1), ('loafer,', 1), ('snuff.', 1), ('lied."', 1), ('me--on', 1), ('allegro,', 1), ('bean', 1), ('napoleon.', 1), ("searched.'", 1), ('spirited.', 1), ('sketching', 1), ('wares', 1), ('lodging-house', 1), ('vagabond', 1), ('may,"', 1), ('baccy-pouch', 1), ('directing', 1), ('prematurely,', 1), ('five-and-twenty,', 1), ('me--peace', 1), ('melon', 1), ('unapproachable', 1), ('promise,"', 1), ("all!'", 1), ('wisdom,', 1), ('earl,"', 1), ('folding-door', 1), ('probe', 1), ('submission', 1), ('telephone', 1), ('joining', 1), ('race-meetings', 1), ('and----"', 1), ('dissolved.', 1), ('exalted."', 1), ('hypothesis!--who', 1), ('wreaths', 1), ('vote', 1), ('inferences,"', 1), ('plans,', 1), ('torment,', 1), ('farm-steadings', 1), ('doing?"', 1), ('lofty,', 1), ('2nd."', 1), ('14,000', 1), ('hudson?"', 1), ('knocking,', 1), ('caught.', 1), ("already,'", 1), ('existence:', 1), ("mind's", 1), ('chiseled', 1), ('coolest', 1), ('bull-dog', 1), ('applicant?"', 1), ('also--but', 1), ('coming!"', 1), ('strike.', 1), ("pocket,'", 1), ('parisian', 1), ('red-handed,', 1), ('ravenous,', 1), ('visit?"', 1), ('sentenced', 1), ('hunting-crop."', 1), ("times.'", 1), ('blackmailing."', 1), ('boots."', 1), ('george!"', 1), ("g's.", 1), ('plot."', 1), ('mauritius.', 1), ('sierra', 1), ('winnings', 1), ('work--one', 1), ('loathing', 1), ('edifices', 1), ('expelled', 1), ("'beddoes", 1), ('shall.', 1), ('temperate', 1), ('custom,', 1), ("'c.c.'", 1), ('burgled."', 1), ("illegal.'", 1), ('stone?"', 1), ('sealer', 1), ('neligan."', 1), ('milner', 1), ('dropped,', 1), ('floundering.', 1), ('babbled', 1), ('flushed,', 1), ('roughly,"', 1), ('quickly.', 1), ('urchin', 1), ('ministers', 1), ('co-operation.', 1), ('norwich', 1), ('amiss.', 1), ('up?', 1), ('burglar."', 1), ('leathers', 1), ('folkestone', 1), ('time-stained', 1), ('fiancé--and', 1), ('"gentlemen,"', 1), ('soul!', 1), ('regal', 1), ('formed."', 1), ('involuntarily', 1), ('shy', 1), ('sibilant', 1), ('without,', 1), ('complicate', 1), ('option', 1), ('with,"', 1), ('defends', 1), ('another--it', 1), ('terminate', 1), ('restive,', 1), ('recriminations.', 1), ('presentable', 1), ('roofs,', 1), ('looseness', 1), ('lasting', 1), ('him--that', 1), ('fir-trees,', 1), ('remarkable?', 1), ('plannings,', 1), ('twenty-guinea', 1), ('crude."', 1), ('tramp?"', 1), ("matter.'", 1), ('valour', 1), ('gracious', 1), ('hated.', 1), ('girl,"', 1), ('outbreak?"', 1), ('preamble.', 1), ('coaster.', 1), ('cane,', 1), ("'bus", 1), ('depths,"', 1), ('untamed', 1), ('transformer', 1), ('shabbily', 1), ("out!'", 1), ('hover', 1), ('indeed--if', 1), ('dartmoor,', 1), ('loyally', 1), ('effective,', 1), ('witnessed,', 1), ('kiss', 1), ('telegraph]', 1), ('telegraphed', 1), ('single-handed', 1), ('pressure."', 1), ("'e.b.'", 1), ('strikingly', 1), ('shots.', 1), ('household."', 1), ('told.', 1), ('"murder!"', 1), ('sceptic,"', 1), ('disclosures', 1), ('pancras', 1), ('whitehall.', 1), ('fraction', 1), ('"pals', 1), ("angel'", 1), ('affairs,"', 1), ('thucydides.', 1), ('superficial,', 1), ('coarse-faced,', 1), ("britannica.'", 1), ("huguenots.'", 1), ('indignant', 1), ('displaced', 1), ('waggled', 1), ('prevents', 1), ('textbook,', 1), ('intimation', 1), ("'were", 1), ('perfection,', 1), ('weasel', 1), ('perceptible.', 1), ('trevelyan?"', 1), ('panoply', 1), ('insufferable', 1), ('interest?"', 1), ('boasted', 1), ('attitude.', 1), ('figures?', 1), ('skin."', 1), ('manacled', 1), ('honor,', 1), ('campaign.', 1), ('5,', 1), ('respect."', 1), ('honoria', 1), ('belongs."', 1), ("most.'", 1), ("cannot,'", 1), ("haven't,", 1), ('"\'journeys', 1), ('deserves,', 1), ('occupy', 1), ('slackest', 1), ('"\'be', 1), ('samples', 1), ('rocket', 1), ('cherished', 1), ('c.c.h.,"', 1), ('valuable?', 1), ('she]', 1), ('tighter', 1), ('abreast', 1), ("now.'", 1), ("aunt's", 1), ('dismissal,', 1), ("ladies.'", 1), ('"vox', 1), ('visited.', 1), ('ruby', 1), ('modifies', 1), ('bad!', 1), ('synthesis', 1), ('woven.', 1), ('guilt--but', 1), ("cigar.'", 1), ('or--"', 1), ("woodhouse's,", 1), ("brokers,'", 1), ('moran--showed', 1), ('specimen.', 1), ('trials', 1), ('"allow', 1), ('incidents,', 1), ('sheets,', 1), ('bona-fide', 1), ('e,', 1), ('loans,', 1), ('notes,"', 1), ('khalifa', 1), ('public-house', 1), ('sumptuous', 1), ('boone."', 1), ('farmhouses,', 1), ('paper."', 1), ('something!', 1), ('furnished?"', 1), ('ill-kempt', 1), ('crime,"', 1), ('single,"', 1), ("door?'", 1), ('rabbits,', 1), ('makings', 1), ('remedied,"', 1), ('cart', 1), ('alice?"', 1), ('madame', 1), ('perfect--to', 1), ('hurdles', 1), ('examined.', 1), ('arose.', 1), ('along!', 1), ('villainy,"', 1), ('regiment?"', 1), ('leaked', 1), ('swimming,', 1), ('relative--his', 1), ('carving', 1), ('"harpooner?"', 1), ('sideboard', 1), ('ones;', 1), ('grudge', 1), ('equivocal', 1), ('dots', 1), ('"\'entirely.\'', 1), ('follows,', 1), ('inclining', 1), ('investigating,', 1), ('one--that', 1), ('swimmer', 1), ("fall.'", 1), ('wood-pile.', 1), ('joseph!', 1), ('cigar-shaped', 1), ('fortnight!"', 1), ('rooms?"', 1), ('reached,', 1), ('cousin,', 1), ("shipley's", 1), ('wincing,', 1), ('trustworthy', 1), ("being,'", 1), ('health--well,', 1), ('wands', 1), ('lid,', 1), ("crown!'", 1), ('forms,', 1), ('proficiency', 1), ('carry--dignified,', 1), ('lion.', 1), ('mastery.', 1), ('sightseers', 1), ('confession,"', 1), ('income.', 1), ('colonials', 1), ('brow-beaten', 1), ('mortal,', 1), ('surrounded.', 1), ('superstition,', 1), ('counsel.', 1), ('montpensier', 1), ('disappearance--and', 1), ('umbrella,"', 1), ('22nd.', 1), ('temptation', 1), ('nutshells', 1), ('comes."', 1), ('wheels,', 1), ('plane', 1), ('smoke-rings', 1), ('constitutional,', 1), ('association', 1), ("c.c.h.'", 1), ('romper', 1), ('phenomenal', 1), ('robs', 1), ('perhaps;', 1), ("elsewhere.'", 1), ('himalayas', 1), ("capital!'", 1), ('30,', 1), ("yes.'", 1), ('sullenly', 1), ('sewing-machine,', 1), ('fur,', 1), ('bill.', 1), ('prayers,', 1), ("minister's", 1), ('fender,', 1), ('antiquity', 1), ('excitedly', 1), ('"\'this,\'', 1), ('countryside.', 1), ('doubt--great', 1), ("here.'", 1), ('watch-chain,', 1), ('these?', 1), ('raining', 1), ('sorry?', 1), ('ago--the', 1), ('petulance', 1), ('answered:', 1), ("wanderings,'", 1), ('blindness,', 1), ('emporium', 1), ('hardihood', 1), ('"work', 1), ('buildings.', 1), ('"\'"very', 1), ('somehow,', 1), ('wakeful', 1), ('guessing,', 1), ('add?', 1), ("mistress?'", 1), ('"madam', 1), ('"fancy', 1), ('race-horse.', 1), ('unable,', 1), ('bookcase.', 1), ('swash', 1), ('escort,', 1), ('three-card', 1), ('anthony.', 1), ('elsewhere.', 1), ('robert,"', 1), ('partner."', 1), ('artists,', 1), ('scissors', 1), ('oversight', 1), ('grass."', 1), ('bad!"', 1), ('brotherhood.', 1), ('sooner,"', 1), ('momentary.', 1), ('jewel-case.', 1), ('henry--all', 1), ('time--eh?"', 1), ('drunken,', 1), ('defiance.', 1), ('stocks,', 1), ('been--yes,', 1), ('ajar', 1), ('westaway', 1), ('fragrance', 1), ('single-roomed', 1), ("body?'", 1), ('thoughtless', 1), ("'encyclopaedia", 1), ('clay;', 1), ('trail."', 1), ('harvest', 1), ('yonder"--he', 1), ('colonel!"', 1), ('terror."', 1), ('atones', 1), ('hushing', 1), ('king;', 1), ('overflowed', 1), ('message."', 1), ('invigorating', 1), ('rush.', 1), ('data!"', 1), ('loftily.', 1), ('flower-bed', 1), ('reaction,', 1), ('"footprints."', 1), ('tint.', 1), ('retorted', 1), ('shot,"', 1), ('trades-people.', 1), ('anticipated,', 1), ('delicate----"', 1), ('tors.', 1), ('creditor,', 1), ('worms', 1), ('gray-tiled', 1), ('vegetarian', 1), ('lunatic', 1), ('leatherhead', 1), ('"third', 1), ('assiduous', 1), ('"lestrade."', 1), ('pealed', 1), ('cripple!"', 1), ('consoling', 1), ('sure,"', 1), ('loose--no,', 1), ('ledgers', 1), ('musical,', 1), ('openness,', 1), ('delay?"', 1), ('builder,"', 1), ('confidently', 1), ('mendicants', 1), ('dundas', 1), ('high-windowed,', 1), ('name--a', 1), ('hard-faced,', 1), ('presently:', 1), ('tidiness', 1), ('birchmoor,', 1), ('north."', 1), ('autograph', 1), ('committed?', 1), ('"absolute', 1), ('eyes,"', 1), ('sherlock!', 1), ("stolen,'", 1), ('conversation?"', 1), ('entrances', 1), ('fir.', 1), ('molesey', 1), ('devolved', 1), ('markings,', 1), ('comic,', 1), ('1876', 1), ('(3rd', 1), ('war--a', 1), ('snow-clad', 1), ('diffidence.', 1), ('sergius?"', 1), ('runs,', 1), ('item.', 1), ('1869,"', 1), ('wriggled', 1), ('brawls', 1), ('freaks', 1), ('instantly.', 1), ('"violet', 1), ('stuffing,', 1), ('thousands?', 1), ('deepen', 1), ('whaler', 1), ('403', 1), ('developed."', 1), ('steps--for', 1), ('bird--practically', 1), ('cabman.', 1), ('seat,"', 1), ('lop-eared,', 1), ('liver-colored', 1), ('mendicant', 1), ('plymouth,', 1), ('chasm', 1), ("shawl.'", 1), ('promptly,', 1), ('question?"', 1), ('rearing', 1), ('disks', 1), ('sigismond', 1), ('rifle.', 1), ('habitually', 1), ('unpractical', 1), ('resembled', 1), ('"incredible', 1), ("correct,'", 1), ('becomes:', 1), ('predominated', 1), ('meddler."', 1), ('device?"', 1), ('weaker', 1), ('mustard.', 1), ('no!', 1), ('ravens."', 1), ('masks', 1), ('hurt,', 1), ('dressing-table,', 1), ('muscle,', 1), ('advocate', 1), ('petroleum', 1), ('skull,', 1), ('thoughts,', 1), ('ticking', 1), ('brains.', 1), ('in-breath', 1), ('lodged,', 1), ('whispers.', 1), ('claret-coloured,', 1), ('pathway,', 1), ('manufactory', 1), ('indiscretion,', 1), ('clay-colored', 1), ('beauty--was', 1), ('merchants,', 1), ('dog,"', 1), ('shillings."', 1), ("ask?'", 1), ('solitude,', 1), ('tongs', 1), ('pay,', 1), ('rugby', 1), ('assaulted', 1), ('loudly,', 1), ('cablegram.', 1), ('bulbous-headed,', 1), ('admiration,', 1), ('house-surgeon,', 1), ('crystal,', 1), ('longitudinal', 1), ('adelaide', 1), ('writing."', 1), ('instruments.', 1), ('lesurier,', 1), ('began:', 1), ('gardens,', 1), ('tiniest', 1), ('nonconformist', 1), ('fashion--:', 1), ('suspiciously', 1), ('moisture,', 1), ('jingo!"', 1), ('bench,', 1), ('employs', 1), ('daubing', 1), ('antagonist;', 1), ('circumspectly,', 1), ('packages', 1), ('band.', 1), ('tries.', 1), ('adair,', 1), ('linguist.', 1), ('centers', 1), ('bilious', 1), ('bed-chamber.', 1), ('tarleton', 1), ('unmixed', 1), ('quavering', 1), ('"\'keep', 1), ('well-wrought', 1), ('vehicles.', 1), ('resent', 1), ('blossoms', 1), ('packed.', 1), ("apply.'", 1), ('deduction!', 1), ("times,'", 1), ('wilton', 1), ('5:15', 1), ('"saddle', 1), ('shameful', 1), ('victory.', 1), ('crystal,"', 1), ('cheerless,', 1), ('"arat,"', 1), ('totally', 1), ('uneducated', 1), ('conceive.', 1), ('heath-covered', 1), ('terraced', 1), ('blues', 1), ('inhabited.', 1), ('rocky', 1), ('stacks', 1), ('braving', 1), ('knees--until', 1), ('me--to', 1), ('abergavenny', 1), ('custody,', 1), ('double-edged', 1), ('expectancies', 1), ('ritual;', 1), ('payments.', 1), ('cured', 1), ('admiralty,', 1), ('radiance.', 1), ('imagined,"', 1), ('unsullied', 1), ('no--of', 1), ('"know', 1), ('mount-james.', 1), ('incapable.', 1), ('custody', 1), ('lucy,', 1), ('aft', 1), ('swims!', 1), ('mall', 1), ('dream."', 1), ('"neolithic', 1), ('orange,', 1), ('generosity,', 1), ('night--only', 1), ('ill-disposed', 1), ('widower."', 1), ('mud-bank', 1), ('farming', 1), ('meetings,', 1), ('reeling', 1), ('obtrusively', 1), ('binomial', 1), ('university;', 1), ('pedestalled', 1), ('see--why,', 1), ('lantern."', 1), ('writing-tables,', 1), ('refrain', 1), ('afraid,"', 1), ('him--secret', 1), ('pantry', 1), ('stalls,', 1), ('quarters."', 1), ('ransacked,', 1), ('scaffold;', 1), ('j.p.', 1), ('impunity."', 1), ('adventures,"', 1), ('theories.', 1), ('"\'pooh,', 1), ('catechism', 1), ('division', 1), ('studded', 1), ('grime,', 1), ('pay-day;', 1), ('ruffian.', 1), ('obscene', 1), ('grays,', 1), ('non-commissioned', 1), ('shiver,"', 1), ('contortions.', 1), ('imposing,', 1), ('hang.', 1), ('adjective', 1), ('extra.', 1), ('associate.', 1), ('"tangey,', 1), ('informer.', 1), ('twitch', 1), ('sensations,', 1), ('witness?"', 1), ('tomorrow?"', 1), ('estate?"', 1), ('weary.', 1), ('employers', 1), ('ambassador,', 1), ('uriah', 1), ('knobs', 1), ('embarks', 1), ("year.'", 1), ('socks.', 1), ('refolded', 1), ('dispatch', 1), ('abruptly,', 1), ('left--here,', 1), ('debris', 1), ('eddy', 1), ('moon,', 1), ('rated', 1), ('kent."', 1), ('soared', 1), ('settlement', 1), ('shining,', 1), ('frank;', 1), ('luck,', 1), ('gaudy', 1), ('meaningless', 1), ('trains,', 1), ('bravest', 1), ('abrupt,', 1), ('bloodthirsty', 1), ('wicket.', 1), ('wrinkles,', 1), ('everywhere.', 1), ('returned."', 1), ('staircase,', 1), ('syria', 1), ("to-night?'", 1), ('"because,', 1), ("'actually", 1), ('irish', 1), ('say--and', 1), ('telegraph-office', 1), ('subcutaneously,', 1), ('rumour', 1), ('emblems,', 1), ('bleeding', 1), ('thirty-eight', 1), ("took,'", 1), ('vault.', 1), ('intruding.', 1), ('official,', 1), ('hood,', 1), ('rattle.', 1), ('clutch', 1), ('september,', 1), ('"american', 1), ('subscribed,', 1), ('medicine.', 1), ('"\'answer', 1), ("westaway's,", 1), ('important--the', 1), ('populous', 1), ('manifested', 1), ('oldmore', 1), ('sex.', 1), ('unfortunate!"', 1), ('groan.', 1), ('coming!', 1), ('elsie,', 1), ('distinctions,', 1), ('sheeny', 1), ('photography.', 1), ('meddle', 1), ('competent', 1), ('finger-ends,', 1), ('belied', 1), ('reasonable.', 1), ('dig,', 1), ('purchase;', 1), ('bachelors', 1), ('yielded--as', 1), ('billiard', 1), ('birds--a', 1), ('garden?"', 1), ('trial."', 1), ('outside,"', 1), ('assumes', 1), ('longer."', 1), ('doran', 1), ("share,'", 1), ('candle-light,', 1), ('determined."', 1), ('fright."', 1), ('lax', 1), ('audacity,', 1), ('fad', 1), ('each."', 1), ('convenience,', 1), ("'t'", 1), ("business.'", 1), ('treated,', 1), ('cartridge', 1), ('paper!"', 1), ('dream,', 1), ('simpler.', 1), ('hospital.', 1), ('swamp.', 1), ('odd,', 1), ('lombard', 1), ('ours', 1), ('blackheath?"', 1), ('dénouement', 1), ('enormity', 1), ('reasoning:', 1), ('dilapidated', 1), ('purloined', 1), ('girlhood,', 1), ('neglecting', 1), ('speckles,', 1), ('swain,', 1), ('haughtily', 1), ('opulence', 1), ('hired,', 1), ('feasible."', 1), ('typewriter.', 1), ('desperation', 1), ('rodney', 1), ('heaven.', 1), ("'take", 1), ('commons,', 1), ('engager,', 1), ('gutter,', 1), ('deluded', 1), ('thunder;', 1), ('frankly,', 1), ('fire-engines', 1), ('localize', 1), ('avoiding', 1), ("stick,'", 1), ('thirty-six,"', 1), ('stole.', 1), ('state?', 1), ('membership', 1), ('easy."', 1), ('pensioner--an', 1), ('crabbed', 1), ('brightly?"', 1), ('narbonne', 1), ("league.'", 1), ('ages."', 1), ('intimated', 1), ('bought."', 1), ('shattered,', 1), ('harness-room', 1), ('shirt-sleeve,', 1), ('instantly."', 1), ('tobacconist;', 1), ('market-place,"', 1), ('"near', 1), ('before--such', 1), ('careworn,', 1), ('park-keeper.', 1), ('unloose', 1), ('neligan,', 1), ('river."', 1), ('patient!"', 1), ('theoretical', 1), ("hay-dealers'", 1), ('stepdaughter', 1), ('wrists,', 1), ('below?"', 1), ('unrolled', 1), ('swag.', 1), ('wholesome', 1), ('blood-hound.', 1), ('incident--the', 1), ('require', 1), ('harmonized', 1), ("'em.", 1), ('purity', 1), ('valued.', 1), ('admired', 1), ('place--his', 1), ('wood-flooring', 1), ("purse,'", 1), ('try.', 1), ('dispossess', 1), ('pathology,', 1), ('scrupulously', 1), ('bridal', 1), ('up;', 1), ('cigarette-ends', 1), ('chewing', 1), ('"mortimer,', 1), ('anyhow?"', 1), ('occurs', 1), ('sulphur', 1), ('mounted,', 1), ('40', 1), ('426', 1), ('booty.', 1), ('allowance,', 1), ('plated', 1), ('glazed--she', 1), ('charwomen', 1), ("usual--that's", 1), ('camped', 1), ('faithfully.', 1), ('indispensable', 1), ('found--and', 1), ('man--well,', 1), ("'hyams,'", 1), ('wash-hand', 1), ('situated."', 1), ('kirwan."', 1), ('assailants.', 1), ('distant,', 1), ('bob,"', 1), ('warnings."', 1), ('"\'as', 1), ('ambiguous,"', 1), ('siberia', 1), ('ticked', 1), ('pyramidal', 1), ('"walk', 1), ('upon,', 1), ('father--took', 1), ('feathers,', 1), ('cooperation."', 1), ('undertaken', 1), ('irregular,', 1), ('failed----"', 1), ('listeners', 1), ('(despatches),', 1), ("'pondicherry", 1), ('boards.', 1), ('rain-lashed', 1), ('music."', 1), ('divined,', 1), ('coach,', 1), ('twitchings', 1), ('check."', 1), ('ionides,', 1), ('assailants,', 1), ('watering-places', 1), ('dialogue', 1), ('trevelyan;', 1), ('honour--and', 1), ('holland.', 1), ('busier', 1), ("'sent", 1), ('bitterly?', 1), ('250', 1), ('locksmith', 1), ('flag-staff', 1), ('belliver', 1), ('shaky', 1), ('"neither,', 1), ('knows,', 1), ('appetite."', 1), ('half-turned', 1), ('guests.', 1), ('treated,"', 1), ('individuality,', 1), ('need.', 1), ('thirsty', 1), ('net.', 1), ('worship,', 1), ('cheekbones,', 1), ('heavy-eyed', 1), ('grinned', 1), ('perplexed,', 1), ('impecunious', 1), ('hague', 1), ('round."', 1), ('blaze!"', 1), ('uneventful', 1), ('groping,', 1), ('interruption!', 1), ('\'pology,"', 1), ('hurlstone;', 1), ('theophilus', 1), ('indispensable.', 1), ('"susan', 1), ('hallamshire;', 1), ('breakfasts', 1), ('down,"', 1), ('unbroken', 1), ("wait,'", 1), ('good-night!"', 1), ('l', 1), ('cold-blooded,', 1), ('slow.', 1), ('emerged;', 1), ('gas."', 1), ('sting', 1), ('forefingers', 1), ('sentries', 1), ('decide."', 1), ('sorts--forgery', 1), ('subtle,', 1), ('experiments', 1), ('patron', 1), ('story!', 1), ('repeating', 1), ('duchess,', 1), ('bracing,', 1), ('nail-marks', 1), ('beseeching', 1), ('idler', 1), ('proves,', 1), ('fully,', 1), ('cup."', 1), ('exit?"', 1), ('astonishing', 1), ('coherent', 1), ('commutation', 1), ('starboard', 1), ('8s.,', 1), ('gales.', 1), ('interviews', 1), ('giggle', 1), ('bellow', 1), ('staccato', 1), ('cattle-tracks,', 1), ('embassies', 1), ('harding,', 1), ('eglonitz--here', 1), ('card-gains.', 1), ('philanthropist', 1), ('concentration,', 1), ('steps.', 1), ('remonstrances.', 1), ('pray,', 1), ('canopy', 1), ('distinctive,', 1), ('countrified,', 1), ('simple-minded', 1), ('pearl-grey', 1), ('swindler', 1), ('abnormal', 1), ('first-rate,', 1), ('travelers', 1), ('silver-tipped', 1), ('conclusive.', 1), ('nicotine.', 1), ('gas-flare."', 1), ('check.', 1), ('fisher.', 1), ('confining', 1), ('snigger.', 1), ('ferrers', 1), ('searched?"', 1), ('knowledge;', 1), ('ornaments.', 1), ('unprincipled.', 1), ('two-hundred-year-old', 1), ('held--1000', 1), ('debt,', 1), ('presentation,', 1), ("wife,'", 1), ('specimens--great', 1), ('took.', 1), ('adventure,"', 1), ('he--or', 1), ('blotting', 1), ('reasons,"', 1), ('shame.', 1), ('holmes--you', 1), ('cheating.', 1), ('willful', 1), ('assertion', 1), ('foment', 1), ('theological', 1), ('sash.', 1), ('stoat,', 1), ('voices?"', 1), ('value,"', 1), ('valet.', 1), ('baryta."', 1), ('way"--his', 1), ("horse's.", 1), ('peninsula', 1), ('two--who', 1), ('talk.', 1), ("sun?'", 1), ('square-towered', 1), ('graduated', 1), ('shirt-cuff', 1), ('ransom', 1), ('bedtime', 1), ('basil--and', 1), ('overboard,', 1), ('brutal,', 1), ('o', 1), ('scullery-maid.', 1), ('demurely;', 1), ('née', 1), ('gasogene', 1), ("bell?'", 1), ('dissatisfied."', 1), ("practice?'", 1), ('that--but,', 1), ('"name', 1), ('practice),', 1), ('admirer."', 1), ('mortuary,', 1), ('half-drunken', 1), ('two-thirds', 1), ('herself."', 1), ('wished.', 1), ('"engage', 1), ('lightly,', 1), ('err,', 1), ('treaty"--an', 1), ('tea-tray', 1), ('pensive', 1), ('reports,', 1), ("suppose,'", 1), ('quartering', 1), ('sophy.', 1), ('quarrels', 1), ("'perhaps", 1), ('resignedly,', 1), ('sitting-room."', 1), ('about?', 1), ('flog', 1), ('unaccountable', 1), ("maggie?'", 1), ('heavy-lidded', 1), ('wounded--he', 1), ('beetling', 1), ('irretrievably', 1), ('support.', 1), ('blue-tinted', 1), ('wrestling,', 1), ('stammer', 1), ('betwixt', 1), ('re-entering', 1), ('soames!', 1), ('unmistakable.', 1), ('incommoded', 1), ('licking', 1), ('tissue-paper', 1), ('knotted', 1), ('instructions.', 1), ('civilisation,', 1), ('yet--well,', 1), ('study-table.', 1), ('dilettante.', 1), ('stimulant."', 1), ('brute,', 1), ('behalf.', 1), ('painless.', 1), ("there?'", 1), ('relied', 1), ('obstinate,"', 1), ("arranged,'", 1), ('vamberry,', 1), ('strings.', 1), ('climbs', 1), ('intruder,', 1), ('notices:', 1), ('bright.', 1), ('raid', 1), ('pasted', 1), ('countenance;', 1), ('dear,"', 1), ('seeking.', 1), ('colder', 1), ('rose-bushes', 1), ('go--none."', 1), ('"absolutely?"', 1), ('unknown?"', 1), ('"lie', 1), ('deal."', 1), ('"who--who\'s', 1), ('theories,"', 1), ('ferment,', 1), ("'drive", 1), ('child!', 1), ('pension', 1), ('read?"', 1), ('roaming', 1), ('acutely', 1), ('earrings?"', 1), ("dundee,'", 1), ("details,'", 1), ('moment!', 1), ("sherlock's", 1), ('attendant--"', 1), ("so,'", 1), ("heart's", 1), ('related?"', 1), ('arms?"', 1), ('hat-securer.', 1), ('georgia,', 1), ('fondness', 1), ('slumber.', 1), ('pull.', 1), ('oldacre."', 1), ('boulevard', 1), ("'77,", 1), ('court!', 1), ("won't,", 1), ('recommendation,', 1), ('curlew', 1), ('nose--that', 1), ('gipsies.', 1), ('secretary!"', 1), ("1846.'", 1), ('cedars', 1), ('glossy."', 1), ('shouting,', 1), ('devotion', 1), ('intention.', 1), ('1855,', 1), ('uncommon,', 1), ('johannesburg,', 1), ('pardon,"', 1), ('outline."', 1), ('wolf.', 1), ('music.', 1), ('peak.', 1), ('clippers', 1), ("'eg.'", 1), ("'jumping", 1), ('tracks,"', 1), ('too--she', 1), ('"meaning', 1), ('capacities', 1), ('fordingham', 1), ("20',", 1), ('pipe-rack--even', 1), ('armed?"', 1), ('chalky', 1), ('unwise', 1), ('geese."', 1), ('unrepaired', 1), ('150', 1), ('these,"', 1), ('fallacy?"', 1), ('internal', 1), ('indicated.', 1), ('believe?\'"', 1), ('tallish', 1), ("naturalist's", 1), ('instance,', 1), ('felons', 1), ('gear.', 1), ('what!', 1), ('reflect', 1), ('court."', 1), ('answering,', 1), ('histon,', 1), ('vestas,', 1), ('recovery', 1), ('strains', 1), ('to--well,', 1), ('gaslight', 1), ('seen?"', 1), ('summer-house.', 1), ('pomposity', 1), ('reynolds.', 1), ('together!"', 1), ('"caught', 1), ('paste.', 1), ('dun-coloured', 1), ('dressing-table.', 1), ('height;', 1), ('clayton', 1), ('witness.', 1), ('airgun?', 1), ("'homer,'", 1), ('cubic', 1), ('undestroyed', 1), ("power.'", 1), ('playground', 1), ('trust,"', 1), ('safeguards', 1), ('"bad!"', 1), ('cost!', 1), ('bangalore', 1), ('bludgeon.', 1), ('unsociable', 1), ('monomaniac', 1), ('pouches', 1), ('custody;', 1), ('grating;', 1), ('progress,', 1), ('former,', 1), ('spirit,', 1), ('progress."', 1), ('soldierly', 1), ('cringed', 1), ('interim."', 1), ('"costa', 1), ('cleared."', 1), ('erratic', 1), ("chicago.'", 1), ('harshly."', 1), ('s', 1), ("bachelor's", 1), ('unwarrantable', 1), ('issue.', 1), ('fly?"', 1), ('waiting-room,', 1), ('scrub', 1), ('lengthwise,', 1), ('squalls', 1), ("elrige's", 1), ('slippered', 1), ('understand."', 1), ('"\'ten', 1), ('arose,', 1), ('repentant', 1), ('"subtle', 1), ('warmest', 1), ('declaration', 1), ('rhodesian', 1), ('promoted,', 1), ('chestnut."', 1), ('relaxation', 1), ('suppression.', 1), ('sharp-eyed', 1), ('slapping', 1), ('independently?"', 1), ('reticence.', 1), ("'encyclopaedia,'", 1), ('covers,', 1), ('appetite.', 1), ('forgo', 1), ('relax', 1), ('"boscombe', 1), ('pardon."', 1), ('yours?"', 1), ('disappearance?', 1), ('window--the', 1), ('from."', 1), ("'there,", 1), ('paper;', 1), ('fruitless.', 1), ('adjectives,', 1), ('sleep?"', 1), ('murders--i', 1), ('nominal', 1), ('debutante', 1), ('impossible!', 1), ('etc.,', 1), ('baby', 1), ("'put", 1), ('benevolence.', 1), ('game."', 1), ('administration.', 1), ('landlady\'s."', 1), ('wild-eyed', 1), ("son.'", 1), ('padre', 1), ('amateur.', 1), ('description."', 1), ('natives', 1), ('simon."', 1), ('treatment."', 1), ('ideas,', 1), ('high-flown', 1), ("end.'", 1), ('gregory.', 1), ('completing', 1), ('excited,', 1), ('battle-signals', 1), ('gem."', 1), ('chronicler.', 1), ('michaelmas', 1), ('interjection.', 1), ('dull-colored', 1), ('hillside,', 1), ('preparation,', 1), ('platform,', 1), ('touchline.', 1), ('unclubable', 1), ('steel,', 1), ('so?', 1), ('mock', 1), ('watched!"', 1), ('cheap', 1), ('groove', 1), ('you--you', 1), ('conditions.', 1), ('wider.', 1), ('affection."', 1), ('despair."', 1), ('revenged', 1), ('publish,', 1), ('leech', 1), ('projection', 1), ('lie,', 1), ('portraits,', 1), ('unexplored.', 1), ('stiff."', 1), ('foresee?"', 1), ('earthly', 1), ('whiplash', 1), ('been,"', 1), ('bittern', 1), ('muffled,', 1), ('27,', 1), ('adhering', 1), ('condition."', 1), ('founders,', 1), ("giant's", 1), ('resembling', 1), ('prosecution.', 1), ('fishing-rod,', 1), ('blackmailer?"', 1), ('watchman.', 1), ("holder,'", 1), ('ushering', 1), ('production', 1), ('lease', 1), ('slipper."', 1), ('crazy!"', 1), ("returned?'", 1), ('resources,', 1), ('sights', 1), ('transactions.', 1), ('students,', 1), ('chooses', 1), ('healthier', 1), ('tender-hearted', 1), ("you!'", 1), ('hideously', 1), ('failure."', 1), ('much--only', 1), ("crockery.'", 1), ('story-teller,"', 1), ('abusing', 1), ('gas-lamp,', 1), ('aggregate', 1), ('something?"', 1), ('approbation', 1), ('glitter.', 1), ('off--ashamed', 1), ('at,', 1), ('breech,', 1), ("days'", 1), ('courtyard,', 1), ('1894,', 1), ('numerous,', 1), ('"j.h.n."', 1), ('clanging', 1), ('obeyed.', 1), ('resoled.', 1), ('suppliers.', 1), ('confounding', 1), ('chemistry', 1), ('saxe-meningen,', 1), ('chase,', 1), ('escape,', 1), ('resided.', 1), ('appear?"', 1), ('recur', 1), ('concave', 1), ('scrawl,', 1), ('type?', 1), ('religion.', 1), ('writer."', 1), ('tongs.', 1), ('photograph;', 1), ('followed."', 1), ('busiest', 1), ('path,"', 1), ('sunset.', 1), ('charge!', 1), ('obstacles', 1), ("'p,'", 1), ('target,', 1), ('elementary,"', 1), ('turpey', 1), ('"sir,', 1), ('office--and', 1), ('most--and', 1), ('said;', 1), ('hurls', 1), ('insensibility', 1), ('relying', 1), ('locality', 1), ('pyramids', 1), ('working.', 1), ('ferns.', 1), ('loose--but', 1), ('homicidal', 1), ('discharged,"', 1), ('spasmodic', 1), ('bad--quite', 1), ("up.'", 1), ('rely.', 1), ('prendergast,"', 1), ('defects.', 1), ('glad."', 1), ('"burglary!', 1), ('hanged."', 1), ('prim-faced', 1), ('"proceed,', 1), ('avoid."', 1), ("venture.'", 1), ('closely,"', 1), ('continuously', 1), ('shoes,"', 1), ('chronicle,', 1), ('tax-payer', 1), ('unthinkable."', 1), ('urging', 1), ('correct--"', 1), ('[stand', 1), ('shirt."', 1), ('job,', 1), ("in.'", 1), ('camden', 1), ('clubs.', 1), ('live."', 1), ('cyclopides."', 1), ('able."', 1), ('vengeance,"', 1), ('blackguard.', 1), ('injury?"', 1), ('cockneys,', 1), ('flint-tipped', 1), ('coat-sleeve', 1), ('tips', 1), ('fanlight.', 1), ('despatched."', 1), ('resist."', 1), ('white-haired,', 1), ('storms', 1), ('eldest', 1), ('wonder,', 1), ('side-whiskered,', 1), ('mischievously.', 1), ('anything--you', 1), ('gibes', 1), ('obliterate', 1), ('creeper', 1), ('slope,', 1), ('"\'l\'homme', 1), ('cairns,', 1), ('perspired', 1), ('poky,', 1), ('going?"', 1), ('shadowed.', 1), ('five-pound', 1), ('sighing', 1), ('protective', 1), ('lads;', 1), ('cruel-hearted', 1), ('sutton."', 1), ('"shillings', 1), ('reputation.', 1), ("back?'", 1), ('officials.', 1), ('copses', 1), ('ominous.', 1), ('disk', 1), ('draught."', 1), ('improbabilities', 1), ('weakening', 1), ('"\'good-evening,\'', 1), ('deceives', 1), ('dressing.', 1), ('perception,', 1), ('mesmeric,', 1), ('catches', 1), ("b.'", 1), ('issuing,', 1), ("cruelty's", 1), ('compliments.', 1), ('partially', 1), ('terminated', 1), ('outrage--to', 1), ('wheels.', 1), ('trough', 1), ('blowing,', 1), ('foreigners', 1), ('tractable', 1), ('coarsely', 1), ('spring-time', 1), ('ask?', 1), ('cried--"holmes!"', 1), ('contains.', 1), ("child?'", 1), ('attainments.', 1), ('billiards,', 1), ('"bear', 1), ('alternation', 1), ('suffered,', 1), ('instruction."', 1), ('screams.', 1), ('embankment', 1), ('agents."', 1), ("doesn't", 1), ('days,"', 1), ('afterwards."', 1), ('museum--we', 1), ('packet,', 1), ('15th.', 1), ('friesland,', 1), ('empty?"', 1), ('interposed,', 1), ('examine."', 1), ('heart!', 1), ('threaded', 1), ('"hist!"', 1), ("don't--it's", 1), ('haze,', 1), ('gummed,', 1), ('assent', 1), ('"see,', 1), ('chancelleries', 1), ("hinders.'", 1), ('sort?"', 1), ('hair-trigger', 1), ("like,'", 1), ('brother-in-law', 1), ('moonlight."', 1), ('tolerate', 1), ('wait?"', 1), ('good-morning!', 1), ('mornings,', 1), ('year--and', 1), ('snick.', 1), ('pince-nez.', 1), ('door-way.', 1), ('leaps', 1), ('farmer,', 1), ('square-toed', 1), ("'death", 1), ('"10th.', 1), ("thoreau's", 1), ('"stolen."', 1), ('ham', 1), ('late--forever', 1), ('printer', 1), ('crashing', 1), ('compound', 1), ('baldness,', 1), ('brute!', 1), ('labour.', 1), ('hound--and', 1), ('golf.', 1), ('drama,"', 1), ('defying', 1), ('house--it', 1), ('sweet,', 1), ('arguing', 1), ('annoyed,', 1), ('wormed', 1), ('caretaker,', 1), ('mortimer,"', 1), ('servants--a', 1), ('bids', 1), ('clumsiness,"', 1), ('maynooth', 1), ('her--wronged', 1), ('boxing.', 1), ('involved,"', 1), ('bankers.', 1), ('fine,"', 1), ("c'--that", 1), ('water."', 1), ('nervousness.', 1), ('propitious', 1), ('cocksure', 1), ("will.'", 1), ('"jacobs,', 1), ('note-book,', 1), ('circumstantial,', 1), ('modestly.', 1), ('bearings,', 1), ('rate.', 1), ('carolinas,', 1), ('lad."', 1), ('varieties', 1), ('"dark', 1), ('"got', 1), ('progress?"', 1), ('lie!', 1), ('terrible.', 1), ('web,', 1), ('workingman.', 1), ('formalities--which', 1), ('carbuncle.', 1), ('open,"', 1), ('books."', 1), ('foam,', 1), ('turning-chair', 1), ('part,"', 1), ('persisted.', 1), ('police-whistle,', 1), ('wig.', 1), ('alterations,', 1), ('compromised', 1), ('temperament.', 1), ('silhouetted', 1), ('watched?"', 1), ('farms', 1), ('script.', 1), ('fairly.', 1), ('mclaren.', 1), ('fleeting', 1), ('license', 1), ('sturdily', 1), ('hosmer.', 1), ('coach.', 1), ('pringle,', 1), ('stories?', 1), ('mahogany.', 1), ('live?"', 1), ('"say,', 1), ('foil.', 1), ('abetting', 1), ('imprudent.', 1), ('jerk."', 1), ('demon', 1), ('camera', 1), ('tingled', 1), ('favorite?"', 1), ('samuel."', 1), ('label,', 1), ('settled."', 1), ('prayed,', 1), ('narrow-chested', 1), ('proclaimed.', 1), ('self.', 1), ('sedges.', 1), ('see!"', 1), ('ross?"', 1), ('well-nigh', 1), ('settled,"', 1), ('retail', 1), ('moorlands,', 1), ('disadvantage."', 1), ('statue,', 1), ('snatching', 1), ("too!'", 1), ('passed,"', 1), ('medium', 1), ('studies,', 1), ('shopping,', 1), ('added.', 1), ('limp;', 1), ('summons,', 1), ('homage', 1), ('"sometimes', 1), ('planet."', 1), ('elapsed.', 1), ('sons--my', 1), ('requires', 1), ('quarreled,', 1), ('alibi.', 1), ('undated,', 1), ('senior."', 1), ('blunder,', 1), ('imbecile?', 1), ('victim--and', 1), ('gone,"', 1), ('harassed,', 1), ("sleep?'", 1), ('raging.', 1), ('liberally', 1), ('heights', 1), ('insect', 1), ('dailies.', 1), ('day-dreaming."', 1), ('outcry', 1), ('thigh,', 1), ('"weald,"', 1), ('1884--there', 1), ('middle,', 1), ('rendering', 1), ('sift', 1), ('ago--it', 1), ('goes."', 1), ('foolish.', 1), ('rodger,', 1), ('linoleum,', 1), ('breakfast-table,', 1), ('middlesex.', 1), ('cheeriness,', 1), ('millar."', 1), ('beforehand,', 1), ('bracken', 1), ('deportment', 1), ('know--faddy', 1), ('pausing', 1), ('high.', 1), ('advertise?"', 1), ('over-tender', 1), ("time?'", 1), ("'other", 1), ('reek.', 1), ('curative', 1), ('king."', 1), ('langmere,', 1), ('half-pennies.', 1), ('putty-like', 1), ('scanty', 1), ('drifts', 1), ('parched', 1), ('heather-tufted', 1), ("hudson.'", 1), ('full-blooded', 1), ('basin.', 1), ('driving.', 1), ('unprotected,', 1), ('lounger', 1), ('recorded.', 1), ('drawn.', 1), ('economy', 1), ('promoted', 1), ('abstracted,', 1), ('bringing--"', 1), ('corpse.', 1), ('home,"', 1), ('mask,"', 1), ('self-sacrifice', 1), ('mortgages,', 1), ('impose', 1), ('stagger,', 1), ("'95", 1), ('"throw', 1), ('memoir', 1), ('slab,', 1), ('armitage--the', 1), ('cigarette-box', 1), ('lessons', 1), ('nodded.', 1), ('presently,"', 1), ('cash', 1), ('hill-folk', 1), ('epilogue.', 1), ('convict!"', 1), ('nicely', 1), ('council', 1), ('half-crowns', 1), ('ceasing', 1), ('pedal.', 1), ('formula?', 1), ('dust-streaks', 1), ('name--his', 1), ('energy;', 1), ('stool,', 1), ("hail.'", 1), ('cheetah,', 1), ('no."', 1), ('forty-two', 1), ('calculations', 1), ('hours?"', 1), ('beginnings', 1), ('manoeuvred', 1), ('jessamine.', 1), ('eagerly,', 1), ('grace?', 1), ('analogous', 1), ('"moriarty', 1), ('exalted.', 1), ('temporarily', 1), ('sleepers,', 1), ('risers', 1), ('richer,', 1), ('steamboats.', 1), ('solve.', 1), ('shoe.', 1), ('punctures', 1), ('metropolitan', 1), ('yawn', 1), ('method.', 1), ('surges.', 1), ('disrepute', 1), ('conspiracy', 1), ('afterthoughts.', 1), ('hungry,', 1), ('cartridge.', 1), ('inference--that', 1), ('fens,', 1), ('birmingham."', 1), ('ever-changing', 1), ('madness', 1), ('untied', 1), ('justifiable', 1), ('solely', 1), ('filaments', 1), ('"half-past', 1), ('gate."', 1), ('choked,', 1), ("shadow?'", 1), ('tenable?"', 1), ('rending,', 1), ('earn,', 1), ('audience.', 1), ('trial!', 1), ('owning', 1), ('"closed', 1), ('architect', 1), ('scrawl', 1), ('crystal', 1), ('"twenty', 1), ('dramatic."', 1), ('brother?"', 1), ('restraining', 1), ('rubber."', 1), ('monotonous,"', 1), ('fraud', 1), ("secret,'", 1), ('small.', 1), ('faced."', 1), ('armour', 1), ('flocked', 1), ('tumultuously', 1), ("gray's", 1), ('farm."', 1), ("simpson's", 1), ('creditable', 1), ('calamity', 1), ("harding's", 1), ('extinguished', 1), ("conductor's", 1), ('"technically,', 1), ('forty-one', 1), ('digs', 1), ('neighborhood.', 1), ('tomorrow.', 1), ('strung', 1), ('plum', 1), ('confess.', 1), ('imagining', 1), ('inventory', 1), ('days--that', 1), ('perspiration', 1), ('cloudless', 1), ('reread', 1), ('physician,', 1), ('trough,', 1), ('lent', 1), ('violin-land,', 1), ('staying."', 1), ('detailing', 1), ('efforts,', 1), ('expectant', 1), ("parts.'", 1), ('china?"', 1), ('vital."', 1), ('brandy.', 1), ('heath-clad', 1), ('past!"', 1), ('"thrown', 1), ('"yes?', 1), ('being."', 1), ('country?', 1), ('uncanny', 1), ('survivors', 1), ('roll,', 1), ('norwood?"', 1), ('"\'dearest', 1), ('lancaster."', 1), ('damn', 1), ('emerges', 1), ('promoter,', 1), ('commuting', 1), ('handicap.', 1), ('alexandria.', 1), ('lounges', 1), ('"why?', 1), ('watchman,', 1), ('lanner.', 1), ('coherently', 1), ('uncourteous,', 1), ('artistic.', 1), ("yes,'", 1), ('detracted', 1), ("phelps's", 1), ('criminals,', 1), ('murdered,', 1), ("norway--i'll", 1), ('n.', 1), ('last,"', 1), ('feature."', 1), ('jury;', 1), ("occupations.'", 1), ('poisoner,', 1), ('chilling', 1), ('swindle', 1), ('well-carpeted', 1), ('disappearance?"', 1), ('mortimer--"', 1), ('"no"', 1), ('14.', 1), ('bathsheba?', 1), ('marvelling', 1), ('purchased.', 1), ('"witness', 1), ('hale,', 1), ('stonemason,', 1), ('coffee."', 1), ('quarrelled', 1), ('light--but', 1), ('harden,', 1), ('mafia.', 1), ('successors.', 1), ('careless.', 1), ('private,"', 1), ('cascade', 1), ('refrained', 1), ('littered.', 1), ('lengthened.', 1), ("plain?'", 1), ('journalist,', 1), ('woman\'s?"', 1), ('vices.', 1), ('jack-in-office!"', 1), ('banqueting-hall,', 1), ('spiteful', 1), ('looking,', 1), ('loafers', 1), ('boil.', 1), ('deed,', 1), ('maniac.', 1), ('projected.', 1), ('lawn."', 1), ('planet.', 1), ('resolved', 1), ('unexplained."', 1), ('myself,"', 1), ('doubtings', 1), ('always.', 1), ("'g'", 1), ('11:15."', 1), ('foliage.', 1), ('gum,', 1), ('sea-weed', 1), ('sherlock?', 1), ('designed', 1), ('downs.', 1), ('basket', 1), ('brave,', 1), ('port.', 1), ('half-intellectual', 1), ('scale,', 1), ('inheritance', 1), ("gain.'", 1), ('wife--"', 1), ('written."', 1), ('to-night?', 1), ('fraudulent', 1), ('unsightly', 1), ('limited.', 1), ('foot-marks."', 1), ("'mother,", 1), ('"very.', 1), ('rummaging', 1), ('uncarpeted', 1), ('steamed', 1), ('attic', 1), ('leering,', 1), ('crystallised', 1), ('abode.', 1), ('transformed', 1), ('chubb', 1), ('leniency', 1), ('importance,"', 1), ('recoil', 1), ('prison!"', 1), ('feigned', 1), ('persia.', 1), ('poverty', 1), ('bogie', 1), ('suavely,', 1), ('eccentricity,', 1), ('analysis."', 1), ('robbers,', 1), ('basement', 1), ('purposes,"', 1), ('ceaseless', 1), ('paint', 1), ('derive', 1), ('squeal', 1), ("'us,'", 1), ('coup-de-maitre', 1), ('valuable--which', 1), ('imprudently,', 1), ('attachment.', 1), ('aperture', 1), ('encamped', 1), ('loser.', 1), ("yesterday.'", 1), ('unhappily', 1), ("not,'", 1), ('business!"', 1), ('blaze?"', 1), ('dark-haired,', 1), ('sherpur,', 1), ('landing,', 1), ('remounted--he', 1), ('permit.', 1), ('guilt?"', 1), ('uncurtained,', 1), ('fifty.', 1), ('after,', 1), ('assault?', 1), ('foolish,', 1), ('room"--he', 1), ('eclipsed', 1), ('education.', 1), ('since,"', 1), ('harum-scarum,', 1), ('retreat--very', 1), ('blood-relatives.', 1), ('humorously.', 1), ('brandy-bottle,', 1), ('bohemianism', 1), ('body,"', 1), ('hurricane', 1), ('flaxen-haired,', 1), ('"thick!', 1), ('"quiet,', 1), ('debt.', 1), ('behind."', 1), ('tortoise-shell', 1), ('constable.', 1), ('cudgel', 1), ('beat.', 1), ('someone?"', 1), ('moistening', 1), ('treachery."', 1), ('breed,', 1), ('punt', 1), ('madrid,', 1), ('tracings', 1), ('tramped', 1), ("agent,'", 1), ('merits,', 1), ('hastily,', 1), ('unfamiliar', 1), ('apologizing', 1), ("callosities.'", 1), ('half-humorous', 1), ('foully', 1), ('weather-bitten', 1), ('offensive;', 1), ('zero-point,', 1), ('"\'never.\'', 1), ('danseuse', 1), ('slobbered', 1), ('weakness,"', 1), ('heir?"', 1), ('discrepancy', 1), ('glistened', 1), ('director,', 1), ('"\'"a', 1), ('barrier', 1), ('farewell', 1), ('state-room', 1), ('counting', 1), ('old-world', 1), ('mess', 1), ('flagstone', 1), ('indoors,', 1), ('fulfilled', 1), ('trite', 1), ('slink', 1), ('iconoclast', 1), ('sanity,', 1), ('fetched', 1), ('sweetness', 1), ('deplorably', 1), ('pursued,', 1), ('angrily.', 1), ('possibly!', 1), ('achieved', 1), ('entry?"', 1), ('reasoning,"', 1), ('wail', 1), ('alike.', 1), ('diseased', 1), ('finance', 1), ('ill-timed.', 1), ("mine?'", 1), ('terror--not', 1), ('thudding', 1), ('nonsense."', 1), ('"\'"we', 1), ('stable?', 1), ('peal', 1), ('cosmopolitan.', 1), ('resounded', 1), ('he--could', 1), ('comment?"', 1), ('life-long', 1), ('pieces."', 1), ('(with', 1), ('postoffice', 1), ('printers.', 1), ('paternal', 1), ('stooping,', 1), ('jumper.', 1), ('thefts,', 1), ('speed.', 1), ('dead;', 1), ('drawback,', 1), ('stretch.', 1), ('17th.', 1), ('cards."', 1), ('decide,', 1), ('jersey', 1), ('cover,', 1), ('finger-tips,', 1), ("moriarty,'", 1), ('newhaven.', 1), ('incline', 1), ('annoying,', 1), ('herr', 1), ('battery', 1), ('busts!', 1), ('leisurely', 1), ('portsdown', 1), ('under-secretary', 1), ('eighteen,', 1), ("'has", 1), ('optician."', 1), ('settee,"', 1), ('cajoled', 1), ('cautioning', 1), ('budding', 1), ('dine?"', 1), ('terriers', 1), ('high-blooded,', 1), ('admission', 1), ('incident--a', 1), ("wilson!'", 1), ('stake;', 1), ('double--a', 1), ('frenchman', 1), ('"you?', 1), ('"\'harold,\'', 1), ('windows?"', 1), ('mobile', 1), ('abetted', 1), ('bramble-covered', 1), ('authority.', 1), ('oak-leaves', 1), ('"until', 1), ("'brunton", 1), ('italian,', 1), ("island.'", 1), ('seasons,', 1), ('shows,', 1), ('painter', 1), ('kingdom,', 1), ('describes', 1), ('pervades', 1), ('kneller,', 1), ("'never", 1), ('hindrance', 1), ('victory,"', 1), ('finesse.', 1), ('mortar,', 1), ('writhing,', 1), ('skirts.', 1), ('descent.', 1), ('roughened', 1), ("doubt,'", 1), ('beyond?', 1), ('triumphantly', 1), ('unusuals', 1), ('brunton."', 1), ('startling,', 1), ('frenzy,', 1), ('prints,', 1), ('overton--a', 1), ('coward', 1), ('hullo!', 1), ('"however', 1), ('hospital?"', 1), ('uncarpeted,', 1), ('"no?"', 1), ('paralysis', 1), ('episode.', 1), ('defy', 1), ('afoot', 1), ('slit.', 1), ('88', 1), ('avenge."', 1), ('leper', 1), ('problems.', 1), ('stately,', 1), ('dook', 1), ('basil', 1), ('efficacious,', 1), ('sebastian,', 1), ('satisfying', 1), ('narrate', 1), ('rapport', 1), ('calf', 1), ('key?', 1), ('birmingham;', 1), ('twirled', 1), ('escapes,', 1), ('malicious,', 1), ('speech,', 1), ('been."', 1), ('"several."', 1), ('year."', 1), ('hotly', 1), ('cam', 1), ('regency.', 1), ('needle-work', 1), ('game--sort', 1), ('red-headed,', 1), ('(one', 1), ('us--tomorrow.', 1), ('greet', 1), ("'papier.'", 1), ('horse-faker', 1), ('rocket,', 1), ('moorlands.', 1), ('crisis."', 1), ('seaman."', 1), ('dwellings,', 1), ('mortimer?', 1), ('gate-post', 1), ('july.', 1), ('curtly,', 1), ('dartmoor;', 1), ('sir--"', 1), ('war.', 1), ('themselves?', 1), ('silvery', 1), ('"threatens', 1), ('unprecedented', 1), ('sewn', 1), ('south-west', 1), ('kind?"', 1), ('chevy', 1), ('treasure."', 1), ('homestead', 1), ('bewilderment', 1), ('unicorn.', 1), ('floor)', 1), ('hollows.', 1), ('tricked', 1), ('"other', 1), ('gladly', 1), ('saltire.', 1), ('myth.', 1), ('ghastly."', 1), ('housekeeping', 1), ('cadet', 1), ('afterwards?"', 1), ('hammer.', 1), ('coventry."', 1), ('catalepsy', 1), ('"there,"', 1), ('violin-case,', 1), ('crown!"', 1), ("society's", 1), ('domes', 1), ('card-case', 1), ('"dirty?"', 1), ('realms', 1), ('served,', 1), ('suspects.', 1), ('biddle,', 1), ('clues.', 1), ('seven-and-twenty', 1), ('colored', 1), ('lenses,', 1), ('slaughter-house.', 1), ('privacy.', 1), ('fang', 1), ('mercifully', 1), ('culminate', 1), ('instrument.', 1), ('depends--well,', 1), ('croaking', 1), ('scrambling', 1), ('bequeathed', 1), ('scattered,', 1), ('re-reading', 1), ("how?'", 1), ('ailing', 1), ('"indeed?', 1), ('swaggering', 1), ('quivering.', 1), ('threshold.', 1), ('ship--hot-headed,', 1), ('tangle?', 1), ('out-of-the-way', 1), ('desmond?"', 1), ('hesitating,', 1), ('face!', 1), ('hell,', 1), ('grice', 1), ('visiting-card', 1), ('testified', 1), ('path?"', 1), ("fuller's-earth,", 1), ('stay-at-home', 1), ("bell!'", 1), ('drama.', 1), ('master."', 1), ('crowning', 1), ('indeed?', 1), ('cap."', 1), ('well-trained', 1), ("eley's", 1), ('maynooth,', 1), ('dandy--and', 1), ('mission,', 1), ("matter?'", 1), ('diligently', 1), ('conduct."', 1), ('characteristic.', 1), ('moodily', 1), ('slur', 1), ('endell', 1), ('compel', 1), ('december', 1), ('modern,"', 1), ("a-stampin'", 1), ('commerce', 1), ('elsewhere,', 1), ('hundred,"', 1), ('vandeleur,', 1), ('barracks,', 1), ("frank's", 1), ('atlanta.', 1), ("scoundrel!'", 1), ('culminated', 1), ('night-bird,', 1), ('connoisseur', 1), ('compliment,', 1), ('stormy,', 1), ("trouser's", 1), ('recounted', 1), ('scribbled,', 1), ('wash,"', 1), ('voyage--she', 1), ('reestablishment', 1), ('threat,', 1), ('pugilist,', 1), ('features?"', 1), ('lichen-studded', 1), ('dinner-gong.', 1), ('ward', 1), ('cobs', 1), ('bring.', 1), ('railway,"', 1), ('necktie', 1), ('outstretched.', 1), ('morland,', 1), ('mantel-piece,', 1), ('child--one', 1), ('conspicuous', 1), ('broads.', 1), ('creole', 1), ('explanation."', 1), ('rounds', 1), ('warning--it', 1), ("grew.'", 1), ('beast?"', 1), ('lateness', 1), ('accidental.', 1), ('background', 1), ('today,"', 1), ('hatred.', 1), ('affairs?"', 1), ('theirs,', 1), ('"oscillation', 1), ('wide-opened', 1), ('tiger?', 1), ('that;', 1), ('elizabeth.]"', 1), ('winced.', 1), ('suggestion,"', 1), ('duties.', 1), ('nearest,', 1), ('companies,', 1), ('treasured', 1), ('connected,', 1), ('annoyance,', 1), ('lunching', 1), ('hear:', 1), ('sofa,"', 1), ('gripping', 1), ('led,', 1), ('fain', 1), ('abnormal,', 1), ('shoulders."', 1), ('band!"', 1), ('distinct,', 1), ('land.', 1), ('regular,', 1), ('custody."', 1), ('puritan--a', 1), ('parlor.', 1), ('tottered--i', 1), ('hugged', 1), ('tremors', 1), ('guardsmen,', 1), ('sharpest', 1), ('railed-in', 1), ('discharged', 1), ('reappearance."', 1), ('apparition,', 1), ('froth,', 1), ('vacantly', 1), ('named.', 1), ("sir'--at", 1), ('proposal,', 1), ('force!', 1), ('deal,"', 1), ('that--ah,', 1), ('weedy', 1), ('characterized', 1), ('mar', 1), ('hunter:--miss', 1), ('outwardly', 1), ('paddock,', 1), ('specialty,', 1), ('after?', 1), ('postscript:', 1), ('"presuming', 1), ('scissors-grinder', 1), ('ball."', 1), ('cubitt,"', 1), ('resist.', 1), ('symbols.', 1), ('abruptness', 1), ('reproduced.', 1), ('liar', 1), ("would.'", 1), ('nimes,', 1), ("stepdaughter's", 1), ('fitted.', 1), ('house-maid,', 1), ('consequences.', 1), ('dotted', 1), ('nasty', 1), ('baldwin,', 1), ('"edith', 1), ('convulsing', 1), ('clinched,', 1), ('"yes?"', 1), ('noted,', 1), ('surroundings,', 1), ('27', 1), ('pompey,"', 1), ('slap', 1), ('illustrious,', 1), ('odd!"', 1), ('billiard-cue', 1), ('unfortunately,', 1), ('whine,', 1), ('police-court', 1), ('sellers,', 1), ('embrace', 1), ('pathological', 1), ('savannah.', 1), ('paddock,"', 1), ('whiff', 1), ('broads', 1), ('harpooners', 1), ('suitor--even', 1), ('thrust-and-parry', 1), ('smiles', 1), ('foliage,', 1), ('none?"', 1), ('flows', 1), ('unframed', 1), ('gallops.', 1), ('decreased', 1), ("pycroft,'", 1), ('misspent,', 1), ('arise.', 1), ('barclays', 1), ('oak-lined', 1), ("dad.'", 1), ("own.'", 1), ('aristocrat', 1), ('"\'"on', 1), ('field-glass.', 1), ('standing.', 1), ('half-effaced', 1), ('likely."', 1), ("reuter's", 1), ('go;', 1), ('old-time', 1), ('violence--an', 1), ('rankled', 1), ('1878,', 1), ('antonio', 1), ('live.', 1), ('"snap', 1), ('know--and', 1), ('complicates', 1), ('untidiness,', 1), ('planks.', 1), ('costly', 1), ('fritz', 1), ('aims', 1), ('incognito,"', 1), ("think?'", 1), ('adjectives', 1), ('"nous', 1), ('norton."', 1), ('formal,', 1), ('joking,"', 1), ('gem', 1), ('gleams', 1), ('mishandled', 1), ('freeze', 1), ('mexico.', 1), ('pattering', 1), ('expression."', 1), ('mess-table.', 1), ('drily.', 1), ('scratch?"', 1), ("help?'", 1), ('hands,"', 1), ('serving-man', 1), ('distracted.', 1), ('grace,"', 1), ('gaol-bird', 1), ('utilized', 1), ('abroad.', 1), ('nine."', 1), ('w.', 1), ('flannel,', 1), ('allied.', 1), ('yonder;', 1), ('breastpin."', 1), ('ended,', 1), ('influences.', 1), ('fur', 1), ('gullet', 1), ('spectacles,', 1), ('burning."', 1), ('concerned--we', 1), ('lucretia', 1), ('"\'show', 1), ('1882).', 1), ("wantin'?'", 1), ('base.', 1), ('hesitating', 1), ('place-kick,', 1), ('interfere.', 1), ('less.', 1), ('quiet,"', 1), ('particulars?"', 1), ('green-splotched', 1), ('cocked,', 1), ('accepting,', 1), ('plantation,', 1), ('do!"', 1), ('subtly', 1), ('lame,', 1), ('penny!', 1), ('disqualify', 1), ('clouds,', 1), ('bills,', 1), ("shepherd's-check", 1), ('lawsuits', 1), ('outbursts,', 1), ('employment.', 1), ('outre', 1), ('supervision.', 1), ('crooked', 1), ('nation.', 1), ('night-clothes,', 1), ("'pink", 1), ('school-days', 1), ('holmes--a', 1), ('onerous', 1), ('blame!"', 1), ('creditors,', 1), ('expectations,', 1), ("eyes,'", 1), ('perplexity,', 1), ('sportsmen', 1), ('high-nosed', 1), ('culpable.', 1), ('straw.', 1), ('him--mr.', 1), ('profession--one', 1), ("constable's", 1), ('girl--some', 1), ('counteracting', 1), ('lifetime!', 1), ('slight,"', 1), ('chapel', 1), ('atonement', 1), ('extended,', 1), ('bludgeon', 1), ('vital.', 1), ('clapping,', 1), ('carry.', 1), ('police-court.', 1), ('butterfly-net,', 1), ('condescended', 1), ('26,', 1), ('limit.', 1), ('sentiment', 1), ('unfrequently', 1), ('unlocked,', 1), ('arranges', 1), ('shield,', 1), ('prospects', 1), ('anne', 1), ("duchess's", 1), ('silver-plated', 1), ('hillsides.', 1), ('burgling', 1), ('trustees', 1), ('cowardly', 1), ('vicar', 1), ('opportunities', 1), ('shrubs', 1), ('copied.', 1), ('pardoned,', 1), ('thumb-mark', 1), ('outdoor', 1), ('gemmi', 1), ('bygone', 1), ('experts.', 1), ('variation', 1), ('vapour.', 1), ('clamor.', 1), ('spellbound', 1), ('star"', 1), ('dough', 1), ('lace?"', 1), ('ensued', 1), ('"\'why,\'', 1), ('cordiality,', 1), ('perceive."', 1), ('interfered', 1), ('lush', 1), ('abortive', 1), ('contortion', 1), ('worlds."', 1), ('another."', 1), ('subsequently', 1), ('processes.', 1), ('retired,', 1), ('acts?', 1), ('crosspiece', 1), ('strapped', 1), ("tongue.'", 1), ('.re.are', 1), ('ostlers,', 1), ('"underneath', 1), ('continue."', 1), ('meiringen,', 1), ('paramore,', 1), ('adrift,', 1), ('coal-owner,', 1), ('fled,"', 1), ('fires,', 1), ('winner.', 1), ('mcfarlane.', 1), ('daughter."', 1), ('wan', 1), ('streams', 1), ('separating', 1), ('gibraltar.', 1), ('station"--dr.', 1), ('mistress?', 1), ('reprobate', 1), ('ichneumon,"', 1), ('name:', 1), ('burglary,', 1), ('resources,"', 1), ('fordingham?', 1), ('water-police,', 1), ('descent', 1), ('fought,', 1), ("'what'", 1), ('good-hearted', 1), ('roomy', 1), ('touch!"', 1), ('evening?"', 1), ('agencies.', 1), ('depths,', 1), ('unimpeachable.', 1), ('mangles,', 1), ('howells.', 1), ('archie,', 1), ('stationers', 1), ('imperative', 1), ('driver.', 1), ('tendons', 1), ('puritanical.', 1), ('talent', 1), ('thick-set,', 1), ("trevor!'", 1), ('succeeded."', 1), ('shiny,', 1), ('speaks,', 1), ('warsaw,', 1), ('mark,', 1), ('best,"', 1), ("not.'", 1), ('temple,', 1), ('"they\'re', 1), ('mid-air.', 1), ('money--who', 1), ('good-bye."', 1), ('traveller', 1), ('belminster,', 1), ('disguise."', 1), ('morgan', 1), ("accomplishments?'", 1), ('smoothness', 1), ('marvellous!"', 1), ('rope--or', 1), ('graham', 1), ('source.', 1), ('discover,"', 1), ('journalistic', 1), ('rebel', 1), ('gauze', 1), ('measure', 1), ('h,', 1), ('churches', 1), ("fritz!'", 1), ('indirectly,', 1), ('plump,', 1), ('talker,', 1), ('interesting?"', 1), ('then;', 1), ("clay's", 1), ('ran]:', 1), ('pressure.', 1), ('continued:', 1), ('watson--refined,', 1), ('hurt.', 1), ('pretends', 1), ('pistolling', 1), ('registration-agent', 1), ('cosey,', 1), ('adequate', 1), ('capture,', 1), ('negotiate."', 1), ('gestures', 1), ('moistened', 1), ("do,'", 1), ('1840.', 1), ('cold.', 1), ('keenly.', 1), ('dual', 1), ('meshes', 1), ('guidance', 1), ('designs,', 1), ('hand--so--you', 1), ('williamson?', 1), ('composition', 1), ('buzzing', 1), ('trespass.', 1), ('handwriting,', 1), ('ex-professor', 1), ('rests."', 1), ('eliciting', 1), ("mate's", 1), ("'ragged", 1), ('holmes--never', 1), ('coerced,', 1), ('heal', 1), ('persistently', 1), ('deformed,', 1), ('trousers."', 1), ('sake]', 1), ('interviewed', 1), ('correspond."', 1), ('"irene\'s', 1), ('extremities?', 1), ('exhaustive', 1), ('lackey', 1), ('trophies', 1), ('necks', 1), ('"\'ample.\'', 1), ("again--'you", 1), ('uncle!', 1), ('smoke,', 1), ('grizzly-haired', 1), ('defray', 1), ('pains,', 1), ('already?"', 1), ('lunacy', 1), ("convict's,", 1), ('craned,', 1), ('cuvier', 1), ('trivial."', 1), ('bitterly,', 1), ("estate.'", 1), ('insatiable', 1), ('"grotesquely', 1), ('it--five', 1), ('sender,', 1), ('advisability', 1), ('center', 1), ('manager,', 1), ('convictions.', 1), ('suite,', 1), ('family?', 1), ('8.', 1), ('milverton--a', 1), ('spells', 1), ('asleep;', 1), ('vanished."', 1), ('bronzed', 1), ("'well,", 1), ('efficient', 1), ('reappearance', 1), ('red-faced', 1), ('trumpington', 1), ('appearances,', 1), ('directions,', 1), ('dress-coat--he', 1), ('slippers.', 1), ('fatigue,"', 1), ('explanation,"', 1), ('cowering', 1), ('happened--august', 1), ('spy?"', 1), ('began,"', 1), ('narrow,', 1), ('wharves', 1), ('sword-belt.', 1), ("'company.'", 1), ('stern-post', 1), ('"open', 1), ('plunge,', 1), ("money.'", 1), ("tail?'", 1), ('dour', 1), ('caltrops', 1), ('"glad', 1), ('10.', 1), ('to----"', 1), ('corroboration,', 1), ('partiality', 1), ('sadness.', 1), ('detectives.', 1), ('roots.', 1), ('especially,', 1), ('brickish', 1), ('washed-out', 1), ('revenging', 1), ('stable-lads', 1), ('jaw.', 1), ('preserving', 1), ('contorted', 1), ('galleries', 1), ('stated.', 1), ('pain."', 1), ('underestimate', 1), ('tresses', 1), ('"mortimer', 1), ('give.', 1), ('investment,', 1), ('distinguish."', 1), ('alike,', 1), ('senility.', 1), ('tameness', 1), ('rooms?', 1), ('servant."', 1), ('rendezvous', 1), ('"study', 1), ('underneath.', 1), ('senders', 1), ('murmuring', 1), ('professionally.', 1), ('busybody', 1), ('fierce,', 1), ('accord,', 1), ('poison?"', 1), ("figures.'", 1), ("pawnbroker's,", 1), ('two-horse', 1), ('caught--never', 1), ('signal?', 1), ('determination.', 1), ('neither.', 1), ('khartoum', 1), ('bayard.', 1), ('framework,', 1), ('crowds', 1), ('loiter', 1), ('miscarried', 1), ('bootmarks', 1), ('farquhar,', 1), ('cared."', 1), ('tact', 1), ('elaborate,', 1), ('burr,', 1), ('roughshod', 1), ('rapidly."', 1), ('apologized', 1), ('trap-door.', 1), ('pattern', 1), ('roysterer', 1), ('london?', 1), ('class--"it', 1), ('waiting-maid,', 1), ('alteration', 1), ('resonant,', 1), ('rosenlaui.', 1), ('crevice.', 1), ('pony,', 1), ('sixpence.', 1), ('dead--or', 1), ('demurely.', 1), ('mortimer."', 1), ('front!"', 1), ('pretending', 1), ('sandeford.', 1), ('propound', 1), ('pipes.', 1), ('prying', 1), ('rupee.', 1), ('1', 1), ('sacrifice', 1), ('descending."', 1), ('barrister', 1), ('"showing', 1), ('blasted', 1), ('mute.', 1), ('fonder', 1), ('things?"', 1), ('treating', 1), ('bowl', 1), ('trivial.', 1), ('drenching', 1), ('exaggerated.', 1), ('unerring', 1), ('have!"', 1), ('unpleasant.', 1), ('pocket-money', 1), ('throat."', 1), ('candlesticks,', 1), ('insensibility.', 1), ('"see,"', 1), ('puzzles,', 1), ('home?"', 1), ('voyage,', 1), ('smart!"', 1), ('get?"', 1), ('maudsley,', 1), ('heart;', 1), ('diary.', 1), ('continue,"', 1), ("frightened!'", 1), ('relish', 1), ('accountant', 1), ('heard--coldstream', 1), ('gray-bearded', 1), ('stethoscope,', 1), ('glisten', 1), ('putty."', 1), ("hours?'", 1), ('film', 1), ('director', 1), ('cellar--something', 1), ('freakish.', 1), ('hillside.', 1), ('mean.', 1), ('vixen', 1), ('reproachfully.', 1), ('rates', 1), ('simpson!"', 1), ('self-reproach', 1), ('weakened', 1), ('tail."', 1), ("am?'", 1), ('escort.', 1), ('obtuse,', 1), ('thought?"', 1), ('gelder,', 1), ('outspoken,', 1), ('understanding,', 1), ('jeremiah', 1), ('fire!', 1), ('closed.', 1), ('good-humour.', 1), ('armitage,', 1), ('sherry,', 1), ('gaitered', 1), ('busybody!"', 1), ('exhalation', 1), ('11.10', 1), ('groups', 1), ('chivalrous,', 1), ('exhilarating', 1), ('spinster,', 1), ('pipe."', 1), ('air-guns."', 1), ('disappoint?', 1), ('survived,', 1), ('threatening,', 1), ('disliked', 1), ('carpet?', 1), ('astronomy,', 1), ('imagined.', 1), ('essentials."', 1), ('trips.', 1), ('bay.', 1), ('uncomfortably', 1), ('mining', 1), ('decoy', 1), ('indicate?', 1), ("couldn't.", 1), ('drilled', 1), ('tufted,', 1), ('sigerson,', 1), ('candle-end', 1), ('"served', 1), ('boys,', 1), ('source."', 1), ('thoughtfully', 1), ('sholto', 1), ('"\'to', 1), ("live?'", 1), ('booty', 1), ('"these,"', 1), ('"well!', 1), ('rifle', 1), ('niches.', 1), ('rat-cage.', 1), ('chalk-pits', 1), ('flapping', 1), ('distinguishing', 1), ('genial.', 1), ('expiring', 1), ("to-night's", 1), ('remiss', 1), ('conscience."', 1), ('academic', 1), ('unfairly', 1), ('i!', 1), ('high."', 1), ('piston,', 1), ("straight?'", 1), ('coolness.', 1), ('carriage-sweep,', 1), ('friday--that', 1), ('incites', 1), ('stand?"', 1), ("indeed!'", 1), ('appalling,', 1), ('leg?"', 1), ("kratides.'", 1), ('ciphers,', 1), ('screen."', 1), ('solution,', 1), ('vesta', 1), ('tradesman,', 1), ('screams!--and', 1), ('"pshaw!', 1), ('drought', 1), ('case-book,', 1), ('daresay.', 1), ('blonde,', 1), ('referred,', 1), ('claim,', 1), ('deposition', 1), ('assailant.', 1), ('honor?"', 1), ('pompous', 1), ('whoso', 1), ('corroboration', 1), ('repaired', 1), ('dolorously', 1), ('treatment,"', 1), ('illustrate.', 1), ('impertinent!', 1), ('balmoral', 1), ('ignotum', 1), ('and--"', 1), ('"royal', 1), ('begging?"', 1), ('matting.', 1), ('time-table.', 1), ('enfeebled', 1), ('leuk,', 1), ('cut-throats', 1), ('fights', 1), ('andover', 1), ('plied', 1), ("'fly-paper'", 1), ('appalled', 1), ('devine.', 1), ('conceivable?', 1), ('unbuttoned', 1), ('lies!', 1), ('loathes', 1), ('contemptuous,', 1), ('"results', 1), ('daintily', 1), ('trespasser', 1), ('godless', 1), ('hoarse,', 1), ('spirit-lamp', 1), ('message-boy.', 1), ('whispering', 1), ('period,', 1), ('mccauley,', 1), ('disconnected,', 1), ('sheep-dog', 1), ('"\'danger', 1), ('palmer,', 1), ('scylla', 1), ('whimpering', 1), ('"\'they', 1), ('shaven', 1), ('portraits."', 1), ('chuckling,', 1), ('fists,', 1), ('malefactor,', 1), ('sorrow.', 1), ('bathing', 1), ('north,"', 1), ('bunch', 1), ('didn\'t."', 1), ('exist', 1), ('reared', 1), ('waddling', 1), ('reputations."', 1), ('married,"', 1), ('hiccoughing', 1), ('fiercely.', 1), ('portly', 1), ('carpet-bag,', 1), ('suspicions--not', 1), ('platitudes', 1), ('carbuncle!"', 1), ('goyal.', 1), ('licked', 1), ('possession?', 1), ('answerable', 1), ('trouble!"', 1), ('father,"', 1), ('acumen,', 1), ('"criminals?"', 1), ('clang,', 1), ('gong', 1), ('selfish,"', 1), ('house;', 1), ('joking', 1), ('requirement.', 1), ('crop.', 1), ('boy;', 1), ('pin-point', 1), ('legend.', 1), ('terminus,', 1), ('"\'anybody', 1), ('invention', 1), ('tragic,', 1), ('couple?"', 1), ('beagle', 1), ('malodorous', 1), ('proprietor,', 1), ('travelling-cap,', 1), ('pocket-book,', 1), ('unbarring', 1), ("bradley's,", 1), ('"purely', 1), ('almighty', 1), ('carlton', 1), ('eight."', 1), ('neighborly', 1), ('constitution.', 1), ('cuisine', 1), ('rabbi', 1), ('aviary,', 1), ('hardy', 1), ('absence."', 1), ('concussion.', 1), ('9.', 1), ('peep.', 1), ('trusted."', 1), ('fastened.', 1), ('archaeologist,', 1), ('grabs', 1), ('reticent', 1), ('drinking,', 1), ("moriarty's", 1), ('leak', 1), ('staring!"', 1), ('excites', 1), ('significance,"', 1), ('darjeeling.', 1), ('illness--"', 1), ('charybdis', 1), ('allotment', 1), ('burner,', 1), ('fragments,', 1), ('selection', 1), ('cal.,', 1), ('suggest?"', 1), ('shoots,', 1), ('fellow-lodger', 1), ('newspapers."', 1), ('loungers', 1), ('mansions,', 1), ('is--why,', 1), ('behaving', 1), ('blocks,', 1), (':--"and', 1), ('spirit.', 1), ('inhabit', 1), ('hanged,', 1), ('tankerville', 1), ('paragraph:', 1), ('craned', 1), ('eats', 1), ('forfeited.', 1), ('loves,', 1), ('amounted,', 1), ('wisp', 1), ('radical', 1), ('yet--well!', 1), ('schemes?', 1), ('inverse', 1), ('gaps', 1), ('talk,"', 1), ('cantered', 1), ('eyeglasses.', 1), ('melbourne,', 1), ('indiscreetly', 1), ('die?"', 1), ('crosby,', 1), ('stoper,', 1), ('wife--you', 1), ('claw,', 1), ("'may", 1), ('justice,', 1), ('davos', 1), ('illusion', 1), ('spiritual.', 1), ('accurate,', 1), ('entries.', 1), ('happening', 1), ('disproved', 1), ('superficial', 1), ('fireplace?"', 1), ('demur', 1), ('buda-pesth.', 1), ('light-green', 1), ('landing."', 1), ('blazonings', 1), ('written?"', 1), ('everybody,', 1), ('mansion.', 1), ('ralph,', 1), ('c', 1), ('ceremony."', 1), ('amusing,', 1), ('collector,', 1), ("was--'and", 1), ('failures', 1), ('know--nothing', 1), ('ramblings', 1), ('bangor,', 1), ('host.', 1), ('confidant--my', 1), ('diversity', 1), ('indolent', 1), ('postmark!', 1), ("forget.'", 1), ('7.', 1), ('pietro,', 1), ('wander.', 1), ('amiability.', 1), ('argument,', 1), ('diplomatist.', 1), ('kneeling,', 1), ("demon--'i'll", 1), ('writings.', 1), ('assiduously', 1), ('bear"--he', 1), ('hospitality.', 1), ('smith-mortimer', 1), ('claimant,', 1), ('tortures', 1), ('faint."', 1), ('westminster,', 1), ('covers)', 1), ('isle', 1), ('norbury.', 1), ('union?"', 1), ('padlocked."', 1), ('anyhow."', 1), ('levying', 1), ("she.'", 1), ('feelings."', 1), ('"noiseless', 1), ('contradict', 1), ('occurrence."', 1), ('philadelphia),', 1), ('lime-lined', 1), ('will?"', 1), ('wiped', 1), ('holes.', 1), ('gresham', 1), ('incidentally,', 1), ('major,', 1), ('shoes."', 1), ('back--i', 1), ('destiny.', 1), ('elementary', 1), ('league."', 1), ("cupboard.'", 1), ('easily."', 1), ('exhibitions.', 1), ('school-mastering', 1), ('presenting', 1), ('finish,"', 1), ('parish,', 1), ('geographical', 1), ('aloud."', 1), ('anoints', 1), ('dares,"', 1), ('8th', 1), ('storm,', 1), ("republicans--that's", 1), ('bert', 1), ('relentless,', 1), ('spars', 1), ('monosyllable', 1), ('"\'"ha,', 1), ('mouth."', 1), ('jobs.', 1), ('woking?', 1), ('leader.', 1), ('photographs,', 1), ("day?'", 1), ('curly-headed', 1), ('terribly.', 1), ('grimy', 1), ('legged', 1), ('excitedly,', 1), ('thankfulness', 1), ('morcar\'s?"', 1), ('partook', 1), ('weiss', 1), ('holmes,--you', 1), ('tobacco?', 1), ('patersons', 1), ('clue!"', 1), ('fellow-men."', 1), ('tree-lined', 1), ('williamson.', 1), ('yorkshire.', 1), ('stevenson', 1), ('tender,', 1), ('shells', 1), ('slaughter', 1), ('tell?', 1), ('opium.', 1), ('insincerity', 1), ('verner,', 1), ('neglected.', 1), ("baxter's", 1), ('carrying.', 1), ('day--two', 1), ('paper!', 1), ('coherent.', 1), ('henry!"', 1), ("thief's", 1), ('import.', 1), ('wit,', 1), ('jowaki', 1), ('commonplace,', 1), ('seller', 1), ('sundial.\'"', 1), ('test-tubes,', 1), ('wintered', 1), ('tassel', 1), ('missing--especially', 1), ('stooped.', 1), ('raises', 1), ('opal', 1), ('might.', 1), ('household--a', 1), ('"they\'ve', 1), ('handled."', 1), ('employers.', 1), ('so-called', 1), ('impenetrable.', 1), ('herring', 1), ('accuracy--i', 1), ('differ', 1), ('soothing,', 1), ('relations?', 1), ('leatherhead.', 1), ('extinction', 1), ('gloves,', 1), ('needs."', 1), ("'mawson", 1), ("'found", 1), ('guns.', 1), ("colonna's", 1), ('effusion.', 1), ('sottish', 1), ('cabled', 1), ('castle', 1), ("acton's--what", 1), ('effective."', 1), ('half-written', 1), ('wretchedly', 1), ('place--a', 1), ('escape?', 1), ('coolly,', 1), ('cunninghams.', 1), ('wigmore', 1), ('yell,', 1), ('heights.', 1), ('white-gloved', 1), ('bone,', 1), ('noise,', 1), ('doddering', 1), ('brink,', 1), ('claret', 1), ('seaman.', 1), ('means?"', 1), ('in!', 1), ('eat,', 1), ('roams', 1), ('exclusion', 1), ('condensed,', 1), ('refund,', 1), ('ledger.', 1), ('west-end', 1), ('membra', 1), ('syllables.', 1), ('recommence', 1), ('civilians,', 1), ('product,', 1), ('landsmen', 1), ('realised', 1), ('blonde', 1), ('trusted.', 1), ('intrusion.', 1), ("pay?'", 1), ('coat-pocket.', 1), ('commissionaire,', 1), ('thing;', 1), ('mortimer--and', 1), ("secretary's", 1), ('corroborates', 1), ('laboratory', 1), ('nutshell.', 1), ('humor.', 1), ('new,', 1), ('trustee', 1), ('rails', 1), ('well!"', 1), ('gravel,', 1), ('villas,', 1), ('motives.', 1), ('bracing', 1), ('interruption,', 1), ('then--a', 1), ('constructed.', 1), ('letter--this', 1), ('arable', 1), ('faculties.', 1), ('exhaustion."', 1), ('burglar,', 1), ('anerley', 1), ('handy.', 1), ('heavier', 1), ('tete-a-tete.', 1), ('good-naturedly.', 1), ('deeper--so', 1), ('hillside--the', 1), ('profound,', 1), ('states?"', 1), ('jowl,', 1), ('stouter', 1), ('fly.', 1), ('toe-marks', 1), ('vox', 1), ('distributed,', 1), ('table,"', 1), ('men--which', 1), ('dress-clothes,', 1), ('run,"', 1), ('instituted."', 1), ('division.', 1), ('drains,', 1), ('clotilde', 1), ('baulks', 1), ('facsimile.', 1), ('assent.', 1), ("chubb's", 1), ('lash,', 1), ('indiscretion."', 1), ("england,'", 1), ('nonentity.', 1), ('cabby,', 1), ('publishing', 1), ('scrip,', 1), ('afford,', 1), ('bestirred', 1), ('"\'whose', 1), ('dead?"', 1), ('busily.', 1), ('over-clean', 1), ('armory', 1), ('past-master', 1), ('brixton,"', 1), ('electricians.', 1), ('alter', 1), ('lexington,', 1), ('benefactor.', 1), ('alas!', 1), ('victory', 1), ('thumbed,', 1), ('"cooee!"', 1), ('ancestry', 1), ('fill.', 1), ('saunders.', 1), ("pounds'", 1), ('jewellery', 1), ("dog's", 1), ('cumulative', 1), ('headway.', 1), ('lose,', 1), ("'sumner,", 1), ('1875.', 1), ('control."', 1), ('collection,"', 1), ('sniffed', 1), ('aspect,', 1), ('passages,', 1), ('current', 1), ("'elsie,'", 1), ('creature!"', 1), ('chicago', 1), ('palmer-tired,', 1), ('track?"', 1), ('smooth,', 1), ('commenced?"', 1), ('squirrel,', 1), ('grievously', 1), ('succession."', 1), ('hieroglyphic:', 1), ('londoners', 1), ('cemented', 1), ('morland', 1), ("books?'", 1), ('long-suffering,', 1), ('wished,', 1), ('exceptions', 1), ("london'", 1), ('belongings', 1), ('victoria,"', 1), ('shyness,', 1), ('certificates?"', 1), ('sundial,', 1), ('bite.', 1), ('luck!"', 1), ('track!', 1), ('tufts', 1), ('vestry', 1), ('"alas!"', 1), ('favourable.', 1), ('copious', 1), ('cosy', 1), ('bravado.', 1), ('ripen', 1), ('drunken-looking', 1), ('assent,', 1), ('cherry-wood', 1), ('independently', 1), ('returns?"', 1), ('pompey,', 1), ('anxiety."', 1), ('simian', 1), ('fancy--and', 1), ("world,'", 1), ('recounting', 1), ('agent--the', 1), ('saddles', 1), ('requests,', 1), ('pea-jacket.', 1), ('mattered', 1), ('witnessed.', 1), ('legion', 1), ('bouquet,', 1), ('interpret', 1), ('corroborated,', 1), ('kind-spoken,', 1), ("shopman's", 1), ('feared.', 1), ("good-night.'", 1), ('premature?', 1), ('unfettered', 1), ('landsman.', 1), ('awful,', 1), ('oak."', 1), ("danger,'", 1), ('justification.', 1), ('than--well,', 1), ('arthur--that', 1), ('province', 1), ('revolved', 1), ('romantic', 1), ('sir--certainly', 1), ('complacent', 1), ('tone.', 1), ('absurd!', 1), ('motion.', 1), ('mist', 1), ('ah!"', 1), ('assisted', 1), ('auckland.', 1), ('eligible.', 1), ('chucked', 1), ('records.', 1), ('esq.', 1), ('politician.', 1), ('jubilee,', 1), ('holmes:--i', 1), ('desperate,', 1), ('ross;', 1), ('dei.', 1), ('politicians,', 1), ('approvingly;', 1), ('arrived."', 1), ('adds', 1), ("photograph,'", 1), ('sport,', 1), ('went."', 1), ('modern,', 1), ("fishes'", 1), ('dishonourable', 1), ('eva.', 1), ('diamond-tipped', 1), ('duty--a', 1), ('cloak.', 1), ('countless', 1), ('dropped."', 1), ('faculties,', 1), ('inductive', 1), ('escape,"', 1), ('antecedents,', 1), ('woodwork.', 1), ('throng.', 1), ('unsystematic,', 1), ('occupies', 1), ('green-grocer', 1), ('shrewd', 1), ('breaches', 1), ('myrtles--a', 1), ('troubles.', 1), ('bull,', 1), ('sealing-wax', 1), ('furred', 1), ('courses.', 1), ('patience,', 1), ('whitehall,', 1), ('vagabonds', 1), ('repugnant', 1), ('berths,', 1), ('pitiful', 1), ('birthday', 1), ('penny--not', 1), ('ruston.', 1), ('invited,', 1), ('prominence', 1), ('deserted,', 1), ('watch-charm,', 1), ('summer-house', 1), ('hark,', 1), ('picture,', 1), ("boy's,", 1), ('belgian', 1), ('hungry,"', 1), ("doctor's,", 1), ('documents."', 1), ('pet."', 1), ('dwelling-rooms,', 1), ('yarn."', 1), ('bothers', 1), ('identification,"', 1), ('wriggling', 1), ('gallows."', 1), ('meet,"', 1), ("smith's", 1), ('bracelets', 1), ('detaching', 1), ('peppery', 1), ('rivet', 1), ('"else', 1), ('unquestionably', 1), ('practitioner,"', 1), ('trifle?"', 1), ('bitterns."', 1), ('conversations', 1), ('1872;', 1), ('engineers', 1), ('beings?"', 1), ('obscurity', 1), ('protection."', 1), ('hebrew', 1), ('straight-haired', 1), ('transport', 1), ('hop."', 1), ('victoria!', 1), ('jostling', 1), ('garret,', 1), ('wand', 1), ('"light-houses,', 1), ('signals.', 1), ('stepmother.', 1), ('estates,', 1), ('mackintosh', 1), ('annoyance."', 1), ('suicides', 1), ('continents,', 1), ('person--a', 1), ('huffed.', 1), ('theorists', 1), ('anthropological', 1), ("'singular", 1), ('explaining.', 1), ('sandwich', 1), ('outline.', 1), ('disposition.', 1), ('considerably."', 1), ('distinctly,', 1), ('law."', 1), ("neighbor's", 1), ('inns', 1), ('hand!', 1), ('him:', 1), ('fear,"', 1), ('twitter.', 1), ('conducive', 1), ('setback?"', 1), ('wednesday,', 1), ('rumble,', 1), ('alley?"', 1), ('"yesterday."', 1), ('accumulated,', 1), ('productions,', 1), ('remedies,"', 1), ('canvas', 1), ('change.', 1), ("b's", 1), ('sergeant,', 1), ('"\'now', 1), ('admirers?"', 1), ('"s"', 1), ('unconditional', 1), ('wrong?', 1), ('deciding', 1), ('sheath-knife,', 1), ('frank?"', 1), ('issue,', 1), ('hilarity', 1), ('battle-axe,', 1), ('muscular,', 1), ("elm.'", 1), ('precautions."', 1), ('compasses', 1), ('foretold', 1), ("henry's.", 1), ('left!', 1), ('convinced,"', 1), ('actress', 1), ('cashier,', 1), ('tut', 1), ('sighed,', 1), ('placed,', 1), ('more--eh,', 1), ('spirits?"', 1), ('upside', 1), ('draughts', 1), ('panama', 1), ('anything;', 1), ('signature,', 1), ('entangled."', 1), ('pleased.', 1), ('charmed', 1), ('inaction,', 1), ('rumours.', 1), ('"which?"', 1), ('chiswick.', 1), ('excited--"was', 1), ('"san', 1), ('crust', 1), ('reveries,', 1), ('retailer', 1), ('memoirs.', 1), ('matting."', 1), ('wedding-ring', 1), ('swilled', 1), ('thud,', 1), ('vinegar', 1), ('executor', 1), ('monkey,', 1), ('chilled', 1), ('open-air', 1), ('veiled', 1), ('impressed,', 1), ('11.', 1), ('opinion!', 1), ('russian.', 1), ("munro.'", 1), ('exeter,', 1), ('insisting', 1), ('kinship', 1), ('terms.', 1), ('"kensington', 1), ('wants."', 1), ('imprinted', 1), ('cable?"', 1), ('plover', 1), ('forms.', 1), ('courses', 1), ('pleased."', 1), ('origin.', 1), ('brokers."', 1), ('links,', 1), ('abruptly', 1), ('venner', 1), ('surly', 1), ('streaks', 1), ('volumes.', 1), ('demonstrating', 1), ('phelps--curried', 1), ('pinnacles', 1), ('richest?"', 1), ('lath-and-plaster', 1), ('distracts', 1), ("stepped?'", 1), ('drizzle', 1), ('suicide."', 1), ('hardness,', 1), ('blandford', 1), ('sanctum.', 1), ('rashness', 1), ('dottles', 1), ('scrum', 1), ('keep.', 1), ('"\'but,', 1), ('vindictiveness.', 1), ("stump.'", 1), ('ball,"', 1), ('stock-broking', 1), ('ran--ran', 1), ('william.', 1), ('jovial,', 1), ('granite,', 1), ('marines,', 1), ('sir--it', 1), ('actionable', 1), ('champions', 1), ('depressed,', 1), ('surplice,', 1), ('foundered;', 1), ('care-taker,', 1), ('scrapbooks,', 1), ('funny,"', 1), ('foie', 1), ('postponed', 1), ('pride.', 1), ('breckinridge;', 1), ('charging', 1), ('arrest,', 1), ("death,'", 1), ('transact', 1), ('religion,"', 1), ('gun-room.', 1), ('week--on', 1), ('shag.', 1), ('keg', 1), ("'american", 1), ('haphazard', 1), ('fifty-two', 1), ("labors.'", 1), ('perceptible', 1), ('stamford,', 1), ('neighbor.', 1), ('221b,', 1), ('pocket-compass.', 1), ('one--only', 1), ('provocative', 1), ('syndicate', 1), ('pleasure.', 1), ('courage.', 1), ('hypothesis,"', 1), ('cedars,', 1), ('approached.', 1), ("'friends", 1), ('injured.', 1), ('silk."', 1), ('station,"', 1), ('march!"', 1), ('barbaric', 1), ('ft', 1), ('padlocked', 1), ('lock,"', 1), ('mouldering', 1), ('affectation,', 1), ('glade,', 1), ('withdrew.', 1), ("joseph's", 1), ('upwood.', 1), ('quiver,', 1), ('offered,', 1), ('marshes', 1), ('warders.', 1), ('student--a', 1), ('"frequently."', 1), ('cross-questioning.', 1), ('dining-table.', 1), ('search."', 1), ('craven', 1), ('wight."', 1), ('pritchard', 1), ('topic', 1), ('proposes', 1), ('dowry?"', 1), ('dawdling,', 1), ('attire', 1), ('ostrich', 1), ('bayswater', 1), ('bet,"', 1), ('extracted.', 1), ('short-sighted', 1), ('clumsily,', 1), ('pondered', 1), ('college;', 1), ('professional."', 1), ('cry."', 1), ('silver-spangled', 1), ('europe."', 1), ('ban', 1), ('700', 1), ('fool,', 1), ("missing,'", 1), ('unwound', 1), ("silent!'", 1), ('leaden', 1), ('spikes.', 1), ('grass-strewn', 1), ('livelihood', 1), ('horse-dealer,', 1), ('welcome.', 1), ('sake,\'"', 1), ('done!"', 1), ('weal', 1), ('blindly,', 1), ('lion-like', 1), ("rate.'", 1), ('right;', 1), ('s."', 1), ('invent.', 1), ("longer,'", 1), ('memorandum', 1), ('money-bags?"', 1), ('6th,', 1), ('ordering', 1), ('owner,', 1), ('"burglary!"', 1), ('boot."', 1), ('costs!', 1), ('hateful--and', 1), ('hallamshire', 1), ("'r's'", 1), ('narrated', 1), ('austere,', 1), ('skin-clad,', 1), ('awoke,', 1), ('montpellier,', 1), ('opium,', 1), ('busts,"', 1), ('prediction', 1), ('struggles', 1), ('deepening', 1), ('"nail-scissors,"', 1), ('muttered.', 1), ("middleton's", 1), ('qualifications.', 1), ('drawled', 1), ('campaigner,', 1), ('authority,', 1), ('memoranda.', 1), ('fantastically', 1), ('simple!"', 1), ('variable,', 1), ('cuddled', 1), ('"4th.', 1), ('guessed--nor', 1), ('den.', 1), ('vogue.', 1), ('1883).', 1), ('prosper."', 1), ('jutting', 1), ('sleepers.', 1), ('check-book.', 1), ('advertisement?', 1), ('ricoletti', 1), ('d,', 1), ('slope."', 1), ('eyeglasses,', 1), ('coldness,', 1), ('voluntarily', 1), ('all--by', 1), ('dissuaded', 1), ('pities', 1), ('too."', 1), ('frock,', 1), ('rat-faced', 1), ('objected.', 1), ('merridew', 1), ('french.', 1), ('eyford."', 1), ('defer', 1), ('moors.', 1), ("room?'", 1), ('concise."', 1), ('woman?"', 1), ('renovated', 1), ("'ss.", 1), ('double-handed', 1), ('hers--possibly', 1), ('supremacy', 1), ('diamond-shaped', 1), ('sl.ne.', 1), ('effie', 1), ('fishes.', 1), ('2704,', 1), ('invariable', 1), ('dusty,', 1), ('fordham,', 1), ('critically.', 1), ('chummy!"', 1), ('month."', 1), ('effective', 1), ('category.', 1), ('exaggeration', 1), ('footmark."', 1), ('addressed,', 1), ('visitor."', 1), ('visit,"', 1), ('sadly.', 1), ('hospitable', 1), ("fine.'", 1), ('blotches', 1), ('peg,', 1), ('"mind', 1), ("can.'", 1), ('originality.', 1), ('collection."', 1), ('"meyers,', 1), ('manufactures', 1), ('confused,', 1), ('jack-knife', 1), ('deemed', 1), ('bachelor."', 1), ('mute', 1), ('was;', 1), ('confined.', 1), ('poker!', 1), ('grant!),', 1), ('"prove', 1), ('oberstein,', 1), ('coincident', 1), ("beddoes?'", 1), ('research.', 1), ('broad-beamed', 1), ('politeness,', 1), ('effect,"', 1), ('flicked', 1), ('recital', 1), ('revered', 1), ('investigations,', 1), ('hauling', 1), ('shrill,', 1), ('curlew,', 1), ('armchairs.', 1), ('60', 1), ('evidence,"', 1), ('nerve,', 1), ("henry?'", 1), ('brass-bound', 1), ('unbalanced', 1), ('funniest', 1), ('l.?"', 1), ('threatened.', 1), ('unarmed.', 1), ('20th."', 1), ("frightened,'", 1), ('approach.', 1), ('foreigner,', 1), ('brilliant,', 1), ('puzzle,', 1), ('"\'brunton,', 1), ('sly,', 1), ('absence?"', 1), ('case--one', 1), ('glove,', 1), ('constitution', 1), ('release.', 1), ('near?', 1), ('angel.', 1), ('gale--and', 1), ('windigate,', 1), ('fight.', 1), ('offence.', 1), ('nutshell,', 1), ('coptic', 1), ('order."', 1), ('nut', 1), ("poe's", 1), ('methodically', 1), ('drunkard,', 1), ('complaint."', 1), ('formidable,"', 1), ('lead-colored', 1), ('trench', 1), ('deciphering', 1), ('ryder."', 1), ('leases,', 1), ('absorb', 1), ('lain,', 1), ('scorched.', 1), ('animal,', 1), ('curiosities', 1), ('follow,"', 1), ('walks!"', 1), ('consequences,', 1), ('sea-stories', 1), ('rotund', 1), ('monomania,"', 1), ('chamber?"', 1), ('holmes:--lord', 1), ('apprehended."', 1), ('conclusions."', 1), ('klan?"', 1), ('ammunition', 1), ('loitered', 1), ("effie's", 1), ('church?"', 1), ('"damp', 1), ('ribbed', 1), ('"want?', 1), ('"p,"', 1), ('aggressively', 1), ('action."', 1), ('encyclopaedia', 1), ('storage', 1), ('dead-white', 1), ('specious', 1), ('sporadic', 1), ('relit', 1), ('thirtieth', 1), ('oldmore,', 1), ('result!"', 1), ('22nd', 1), ('isn\'t."', 1), ('l.--but', 1), ('slips,', 1), ('relation.', 1), ('audible', 1), ('bewildering."', 1), ('operate', 1), ('niggard', 1), ('setback."', 1), ('volley', 1), ('wood-work,', 1), ('priest,', 1), ('nephew.', 1), ('creditor', 1), ('fountain?"', 1), ('unfruitful', 1), ('subdued.', 1), ('"lay', 1), ('movements,', 1), ('louisiana,', 1), ('solutions,', 1), ('unbreakable', 1), ('cigar-ash.', 1), ('anticipation', 1), ('yell--the', 1), ('jephro', 1), ('madman?', 1), ('ceased,', 1), ('sculptor,', 1), ('inhalation', 1), ('rise.', 1), ('gun-room,', 1), ('ten-thirty.', 1), ('prefer?"', 1), ('desborough.', 1), ('arch', 1), ("frankly,'", 1), ('discloses', 1), ('walking-stick,', 1), ('exact.', 1), ('"\'"no."', 1), ('school-master', 1), ('2,000', 1), ('me--and', 1), ("kitchen,'", 1), ('incalculable', 1), ('arrives,', 1), ('clerical', 1), ('chivalrous', 1), ('fathomed.', 1), ('slave,', 1), ('unheard.', 1), ('gas-lamp', 1), ('"exactly--one', 1), ('reproduce,', 1), ('unavoidable', 1), ('diminish', 1), ('maid-servant,', 1), ('invaders', 1), ('"he!', 1), ('positions,', 1), ('mouldy', 1), ("prisoner's", 1), ('uppingham', 1), ("picture-dealer's", 1), ('smash,', 1), ('honeymoon;', 1), ('gregson,', 1), ('beer,"', 1), ('commissionaire?"', 1), ('disapprobation', 1), ('employment."', 1), ('tenanted,"', 1), ('agricultural,', 1), ('employing', 1), ('purse."', 1), ("woodhouse's?'", 1), ('should--"', 1), ('baited.', 1), ('precedes', 1), ('trance.', 1), ('echo', 1), ('fathom."', 1), ('"feeling', 1), ('tigers', 1), ('bradshaw,"', 1), ('bradley,', 1), ('defiled.', 1), ('garroter', 1), ('systematic,', 1), ('bill,"', 1), ('barrow."', 1), ('damper,', 1), ('landing-places', 1), ('toils', 1), ('embroidered', 1), ('dantzig,', 1), ('unfinished,', 1), ('match-box."', 1), ('atlanta,"', 1), ('court-yard,', 1), ('cravat', 1), ('game?', 1), ("morcar's", 1), ('thief;', 1), ('baize', 1), ('wish."', 1), ('munich', 1), ('acquiescence,', 1), ('generate.', 1), ('fashionably', 1), ('predict', 1), ("lawyer.'", 1), ('passionately.', 1), ("effie?'", 1), ('accuser.', 1), ('brandy."', 1), ('ankle,', 1), ('quinsy', 1), ('inexplicable,', 1), ('contained.', 1), ('cock-and-bull', 1), ('chaff-cutting', 1), ('reader,', 1), ('cream', 1), ('dirt.', 1), ("trevelyan's,", 1), ('were--straw,', 1), ('large?"', 1), ('pikestaff,', 1), ('somewhere.', 1), ('greensward', 1), ('breakfast-room."', 1), ('wicket', 1), ('saturdays."', 1), ("roylott's,", 1), ('stone;', 1), ('"\'precisely.', 1), ('glass!"', 1), ('chattering,', 1), ('london,"', 1), ("itself,'", 1), ('convoy', 1), ('glass-topped', 1), ('impassable,', 1), ('street-lamps', 1), ('counsellor,', 1), ('internationals.', 1), ("deserve!'", 1), ('walking."', 1), ('horsey-looking', 1), ('watched."', 1), ('witnesses.', 1), ('death!', 1), ('performs', 1), ('jaunty,', 1), ('"terrible!', 1), ('well-spoken', 1), ('nautical', 1), ('yorkshire', 1), ('woman!"', 1), ('betting?"', 1), ('committed,"', 1), ("bureau.'", 1), ('amiability', 1), ('crafty', 1), ('labour,', 1), ('misdirected', 1), ('veiled,', 1), ('wooden-legged', 1), ('wanted."', 1), ('temptation.', 1), ('limp?"', 1), ('coincide.', 1), ('callous', 1), ('reverberated', 1), ('tollers', 1), ('nov.', 1), ('eliminate', 1), ('stolen?"', 1), ('grappled', 1), ('argues', 1), ('present?"', 1), ('lebanon,', 1), ('sometimes,', 1), ('lamp-light', 1), ('miniature,', 1), ('meadows.', 1), ('overmastering', 1), ('digging', 1), ('humbler', 1), ('horse!', 1), ('height?"', 1), ('crossing,', 1), ('footing.', 1), ('originally.', 1), ('"hotel', 1), ('"\'most', 1), ('lockers', 1), ('unpapered', 1), ('passions.', 1), ('"instead', 1), ('hat-securer,', 1), ('loved,', 1), ('frosted', 1), ('mousseline', 1), ('armed,', 1), ('between."', 1), ('threats,', 1), ('fit.', 1), ('"john,', 1), ('injuries,', 1), ('ambush,', 1), ('rica,"', 1), ('housemaid,', 1), ('scotia,', 1), ('indexed', 1), ('adair?"', 1), ('overlook.', 1), ('snapped.', 1), ('immobility', 1), ('malicious', 1), ('figures:', 1), ('gordon,', 1), ('dog-whip', 1), ('multiply', 1), ('depressing', 1), ('physical,', 1), ('partitions', 1), ('deepens', 1), ('13th--that', 1), ('dessert-spoon.', 1), ('proceedings.', 1), ('sir--i', 1), ('supervision', 1), ('grandmother,', 1), ('content,', 1), ("landlady's", 1), ('slighter', 1), ('half-closed', 1), ('aware.', 1), ('buttons,', 1), ('wronged.', 1), ('tripod,', 1), ('226', 1), ("left.'", 1), ('lassitude', 1), ('registry.', 1), ('ideals', 1), ('written:', 1), ('devolves', 1), ('anderson', 1), ('11:30."', 1), ('lonesome,', 1), ('coachman?"', 1), ("undertaker's", 1), ('hurry."', 1), ('evil-doer', 1), ('gushed', 1), ('praying', 1), ('zigzag', 1), ('mist,', 1), ('single-minded', 1), ('grateful.', 1), ('hurriedly."', 1), ('signatures', 1), ("bachelor.'", 1), ('fulsome,', 1), ('guggling,', 1), ('stays', 1), ('footsteps.', 1), ('armed."', 1), ('sentinel,', 1), ('threadbare', 1), ('tigers,', 1), ('stamp.', 1), ('offensive.', 1), ('much--and', 1), ('thames', 1), ('"danger!', 1), ('drowsiness', 1), ('tenfold', 1), ('tied."', 1), ('replied.', 1), ('madman,"', 1), ('road!', 1), ('half-pay', 1), ('annoys', 1), ('possibilities', 1), ('exceeds', 1), ('home?', 1), ('"going', 1), ('hinting', 1), ('florida', 1), ('living?"', 1), ('sore', 1), ('stepney,', 1), ('reproach."', 1), ('trainers', 1), ('trimming."', 1), ('groom,"', 1), ('preserved,', 1), ('notebook."', 1), ('nails.', 1), ('"\'alas,', 1), ("pyland.'", 1), ('windings,', 1), ('unnecessary,"', 1), ('rambles,', 1), ('besides--"', 1), ('canters,', 1), ('exceedingly.', 1), ('poisoning', 1), ('consequential', 1), ('cigar-case.', 1), ('assault,', 1), ('solemnity,', 1), ('uniforms', 1), ('swirl', 1), ('"fine', 1), ('lingering', 1), ('arc-and-compass', 1), ('devilry', 1), ('restaurant.', 1), ('pairs', 1), ('hay', 1), ('sincerely', 1), ('be;', 1), ('demure,', 1), ('sealskin,--and', 1), ('bluebottles,', 1), ('gives.', 1), ('downing', 1), ('impertinent', 1), ('sale.', 1), ('why--why?', 1), ('unromantic', 1), ('zigzagged', 1), ('instrument."', 1), ('realized,"', 1), ('next?"', 1), ('echo,', 1), ('"exactly;', 1), ('argument.', 1), ('stable-boy?"', 1), ('"e"', 1), ('lion--witness', 1), ('judging', 1), ("morning.--basil.'", 1), ('beginning."', 1), ('milverton!', 1), ('superficial.', 1), ('piping,', 1), ('glade?', 1), ('parley', 1), ('speciously', 1), ('beggar.', 1), ('kate--poor', 1), ('biographer,', 1), ('fair-haired', 1), ('eyes--eyes', 1), ('lies?"', 1), ('herald', 1), ('hardships', 1), ('tallow-stains', 1), ('boy!', 1), ('watercourse,', 1), ("'em", 1), ('devoted.', 1), ('volunteer', 1), ('smooth-skinned,', 1), ('panelled.', 1), ('bags.', 1), ('correspondent', 1), ('"sit', 1), ('frankly.', 1), ('requested', 1), ('mccarthy,"', 1), ("'whereas,", 1), ('themselves.', 1), ('hear!', 1), ('sparkles.', 1), ('vain--colonel', 1), ('cocaine,', 1), ("pycroft?'", 1), ('sitting?"', 1), ('wonderful!"', 1), ('"\'over', 1), ('mechanism.', 1), ('anon', 1), ('hottentot.', 1), ('wiring', 1), ('knitted,', 1), ('unselfish,', 1), ('barred-tailed', 1), ('faults,', 1), ('lays', 1), ('assuredly', 1), ('coincidence.', 1), ('watson--which', 1), ('l300.', 1), ('studies', 1), ('crush', 1), ('considerations', 1), ('parsley', 1), ("patient's", 1), ('incriminated', 1), ('work."', 1), ('contemplation.', 1), ('three-roomed', 1), ('household,"', 1), ('répertoire,', 1), ('signing', 1), ('cigarettes,', 1), ('village,"', 1), ('"l10', 1), ('virile', 1), ('ringleader."', 1), ('paralyzing.', 1), ('agape,', 1), ('florida,', 1), ('unhappily,', 1), ('dating', 1), ('assortment!"', 1), ('entreaties."', 1), ('rattle,', 1), ('necessary,"', 1), ('oil', 1), ('out-and-out', 1), ('check-book?', 1), ('anguish--burst', 1), ('follow,', 1), ('sulking.', 1), ('atoms', 1), ('smooth-faced', 1), ('majesty,"', 1), ('furtively', 1), ('self."', 1), ('hugo.', 1), ('present--in', 1), ('hydraulics,', 1), ('cave,', 1), ('missions', 1), ('impertinence', 1), ('equal.', 1), ('lurked.', 1), ('soie,', 1), ('forebodings', 1), ('walsall,', 1), ('margin,', 1), ('rickety', 1), ('copier', 1), ('berth,', 1), ("tout,'", 1), ('disappeared?', 1), ('umbrella,', 1), ('proceeded,', 1), ('accuse?"', 1), ("elise!'", 1), ('law-abiding', 1), ('"very,', 1), ('inclinations.', 1), ('"hill', 1), ('applied?', 1), ('ascetic-looking,', 1), ('bothered.', 1), ("passed?'", 1), ('"carried', 1), ('considers', 1), ('plentiful', 1), ('certain?"', 1), ('east-coast', 1), ('got."', 1), ('draw.', 1), ('survived."', 1), ("two.'", 1), ('debts.', 1), ('plaster,', 1), ("stranger's", 1), ('toes', 1), ("them?'", 1), ("hen'", 1), ('talks!', 1), ('grace."', 1), ('fire--her', 1), ('attic.', 1), ("only,'", 1), ('catalepsy,', 1), ('manners.', 1), ('deplore', 1), ('thurston.', 1), ('entailed.', 1), ('newspapers', 1), ('night--we', 1), ('balmoral.', 1), ('communicate.', 1), ('bestow."', 1), ('richness.', 1), ('sleuth-hound,', 1), ('naturalist--stapleton,', 1), ('pocket-book', 1), ('yard?', 1), ('alexis,', 1), ('discouraging', 1), ('"\'ha,', 1), ('exultation', 1), ('conducting', 1), ('remembrance,"', 1), ('afresh.', 1), ('terror?', 1), ('victory,', 1), ('hark!"', 1), ('legitimate.', 1), ('attentions.', 1), ('case?', 1), ('gracious."', 1), ('closeted', 1), ('three-pence', 1), ('god-forsaken', 1), ('police-court,"', 1), ("'at", 1), ('absent-minded.', 1), ('subscribers', 1), ('agatha', 1), ('bumping', 1), ('balmy', 1), ('professional.', 1), ('observer."', 1), ('helpless."', 1), ('hunched', 1), ('montana,', 1), ('clearing,', 1), ('recognising', 1), ('hatched', 1), ('however;', 1), ('tapestry-hung', 1), ('bankers', 1), ('trailing,', 1), ('graven', 1), ('pale;', 1), ('forger', 1), ('slashed', 1), ('pipette,', 1), ('mutiny', 1), ('misery.', 1), ('philadelphia.', 1), ('wedded', 1), ('credited', 1), ('"stoke', 1), ('last."', 1), ('steps?"', 1), ('abyss,', 1), ('populi,', 1), ('toilet.', 1), ('reiterated', 1), ('"simply', 1), ('nobler', 1), ('wealth.', 1), ('knee-cap,', 1), ('reputations', 1), ('inadvertently--"', 1), ('blackmailed', 1), ('note-paper."', 1), ('procession', 1), ('portly,', 1), ('unnoticed,', 1), ('retriever', 1), ('assassin."', 1), ('unconcernedly,', 1), ("will,'", 1), ('treatise.', 1), ('straw!', 1), ('one?', 1), ('voyages."', 1), ('barnicot,', 1), ('twine', 1), ('relating', 1), ('homemade', 1), ('head?"', 1), ('revenge,', 1), ('plot,', 1), ('boat;', 1), ('"early', 1), ('suggest,"', 1), ('upon--no', 1), ('insufficient.', 1), ('appeared."', 1), ('soothing."', 1), ('illegally', 1), ('anguish', 1), ("nuisance.'", 1), ("'on", 1), ('clothing.', 1), ('baskervilles."', 1), ("'inspector", 1), ('correctly,', 1), ('smoked,', 1), ('assurance,"', 1), ('rugger', 1), ('watson--quick,', 1), ('horses.', 1), ('explicit."', 1), ('joints', 1), ('committees', 1), ('tomfoolery', 1), ('timbered', 1), ("the.'", 1), ('post?"', 1), ('time-honoured', 1), ('cyclist.', 1), ('border.', 1), ('inestimable', 1), ('jewel-case,', 1), ('organizer', 1), ('abroad', 1), ('serpentine."', 1), ('detective;', 1), ('"grave', 1), ('morbid', 1), ('poop', 1), ("vandeleur,'", 1), ('co-operation,', 1), ('cocoa', 1), ('black.', 1), ('chink,', 1), ('proceeds', 1), ('encompass', 1), ("charles's.", 1), ('sentries;', 1), ('chamois', 1), ('ingloriously', 1), ('water-mark', 1), ('13.', 1), ('desolate,', 1), ('explosion.', 1), ('forever!', 1), ('scales', 1), ('defeat.', 1), ('applicant', 1), ('irrelevant?"', 1), ('fellow!"', 1), ('typewriting?"', 1), ('ashes.', 1), ('otherwise;', 1), ('beautiful?"', 1), ('fancies."', 1), ('dwelt', 1), ('boggling', 1), ('discreet?', 1), ('imitate.', 1), ('scope', 1), ('sunburned,', 1), ('oath.', 1), ('wager.', 1), ('seven-mile', 1), ('disappears."', 1), ('recital,', 1), ('weaned', 1), ('derived.', 1), ('christian', 1), ('five-hundred-ton', 1), ('reared.', 1), ('inconvenience.', 1), ("loudly.'", 1), ('eventful', 1), ('continuation', 1), ('betrayal', 1), ('craft', 1), ('gaslight,', 1), ('incredible.', 1), ('dangerous.', 1), ('charcoal.', 1), ('double-breasted', 1), ('i--from', 1), ('puffs', 1), ('derived', 1), ('questions?', 1), ('.m', 1), ('muffler', 1), ('lustrous', 1), ('preserves', 1), ('butterfly-net', 1), ("country's", 1), ('axiom', 1), ('quit,', 1), ('see--her', 1), ('three,"', 1), ('eleven-twenty', 1), ('fourteenth,', 1), ('wreckage,', 1), ('caldron', 1), ('probably--lead', 1), ('dissatisfied.', 1), ('asylum,', 1), ('ambitious,', 1), ("lovers'", 1), ('stood,"', 1), ('chronicles', 1), ('rat-tat-tat.', 1), ("'you,'", 1), ('hopeful?', 1), ('relit,', 1), ('clearest', 1), ('handle-bar.', 1), ('ill-usage,', 1), ('isolation', 1), ("hopkin's", 1), ("lady?'", 1), ('remark,"', 1), ('dispensary', 1), ('dispute."', 1), ('"\'death,\'', 1), ('sweetest', 1), ('no:', 1), ('brief,', 1), ('stakes', 1), ('inefficient', 1), ('cellar!', 1), ('affectionate,', 1), ('freckled,', 1), ('gurgle.', 1), ('taketh', 1), ('splinter,', 1), ('pudding.', 1), ('vessel.', 1), ('strong-minded', 1), ('duty?"', 1), ('through--a', 1), ('finger,"', 1), ('eye-glass.', 1), ('50,000', 1), ('baronet."', 1), ('correct,"', 1), ("door.'", 1), ('policeman."', 1), ('cigar-holder,', 1), ("mystery.'", 1), ('traces--any', 1), ('satisfied."', 1), ('shifty,', 1), ('mary.', 1), ('disastrous', 1), ('ryder.', 1), ('warehouse,', 1), ("paul's.'", 1), ('troopers', 1), ('"good,', 1), ('motionless;', 1), ('calhoun?"', 1), ('secreted', 1), ('new,"', 1), ('altercation', 1), ('robert,', 1), ('hip-pocket,', 1), ('nations,', 1), ('"meanwhile,"', 1), ('london!', 1), ('rending', 1), ('mumble', 1), ('infrequent', 1), ('unpack', 1), ('providing', 1), ('lawyer."', 1), ('raw."', 1), ('rate--since', 1), ('promise."', 1), ('glamour', 1), ('reputation--for,', 1), ('middle."', 1), ('overlook?"', 1), ("house-breaker's", 1), ('"\'"oh,', 1), ('stumbling-block', 1), ('infatuated', 1), ('gregson', 1), ('affectionately,', 1), ('hats.', 1), ('mess,', 1), ('lunching."', 1), ('"be', 1), ('supporters,', 1), ("haven't'", 1), ('young--only', 1), ('celebrate', 1), ('red-letter', 1), ("detail,'", 1), ('lamentable', 1), ('twenty-third', 1), ('diplomatist', 1), ('reverie', 1), ('esquimau.', 1), ('shrewdness', 1), ('hyde', 1), ('diffidence', 1), ("e's,", 1), ('soil,', 1), ("night?'", 1), ('geneve', 1), ('gnaws', 1), ('pieces,', 1), ('radius,', 1), ('rejected.', 1), ('garcia,', 1), ('orchid', 1), ('problem--submitted', 1), ('saviour', 1), ('watson,--i', 1), ('morning--two', 1), ('collection.', 1), ('was--it', 1), ('ante-room', 1), ('ghost,', 1), ('things?', 1), ('serpentine?"', 1), ('serious."', 1), ('droned', 1), ('clients,', 1), ('decisive', 1), ('emergencies.', 1), ('ball.', 1), ('commonly', 1), ('attached.', 1), ('toppled', 1), ('later,"', 1), ('"charing', 1), ('drugget,', 1), ('hand-bag', 1), ('maps', 1), ('intrigue.', 1), ('driven,', 1), ("creature's", 1), ('declining', 1), ('purpose?', 1), ('cautioned', 1), ('walsham,', 1), ('forceps', 1), ('conceives', 1), ('"\'neither', 1), ('david?"', 1), ("diplomatist's", 1), ("'97,", 1), ('"\'breckinridge,', 1), ('shunning', 1), ('tracking', 1), ('hayter,', 1), ('strongly."', 1), ('canine', 1), ('butter-dishes', 1), ('today.', 1), ('incessantly.', 1), ('burnwell,', 1), ('arguments.', 1), ('lighted."', 1), ('adventure?"', 1), ('side-lamps', 1), ('dreads', 1), ('night--he', 1), ('civilization', 1), ('slice', 1), ('acquirement', 1), ('coat-pocket."', 1), ('introspect.', 1), ('income-tax.', 1), ('barons', 1), ("'89,", 1), ('death--!"', 1), ('counsel,', 1), ('carpet-bags,', 1), ('trumpet', 1), ('overhearing', 1), ('astonish', 1), ('briarbrae,"', 1), ('asphalt', 1), ('fame!', 1), ('furze-bush', 1), ('waned', 1), ('hush,', 1), ('mastiff;', 1), ('assisting."', 1), ('notebooks,', 1), ('"gregory,', 1), ('moved,"', 1), ('"aye,', 1), ('drab-covered', 1), ('glibly.', 1), ('breckinridge,"', 1), ('junior?"', 1), ('retreat.', 1), ('interval."', 1), ('prendergast,', 1), ('attention)', 1), ('harpoon.', 1), ('bath;', 1), ('garments.', 1), ('left?"', 1), ('hear,', 1), ('ship."', 1), ('"trevor', 1), ('drug-created', 1), ('course!"', 1), ("sutherland's", 1), ('red-rimmed', 1), ('magnificent.', 1), ('combine', 1), ('dingy,', 1), ('parcel', 1), ('underneath', 1), ('concoction.', 1), ('swift,', 1), ('ours?"', 1), ('manners', 1), ('solicitor,', 1), ('alarm?"', 1), ('those?"', 1), ('visitor,"', 1), ("groom.'", 1), ('wailing', 1), ('oldacres', 1), ('biblical', 1), ("harker's.", 1), ('settling,', 1), ('journey?"', 1), ('gossips', 1), ('gainer,', 1), ('inviolate.', 1), ('administered', 1), ('sender.', 1), ('endangered', 1), ('carpet-bag', 1), ('beryl.', 1), ('nab', 1), ('fall;', 1), ('house-party,', 1), ('protesting,', 1), ('unheard-of', 1), ('loving--all', 1), ('dook,', 1), ('arrival."', 1), ('divined--in', 1), ('inclusive', 1), ('lists,', 1), ('austerlitz,', 1), ('snatch', 1), ('tension.', 1), ('elicited', 1), ('newly-framed', 1), ('worried', 1), ('weirdest,', 1), ('keen-witted,', 1), ('madness."', 1), ('spying', 1), ('reflection,', 1), ('honor."', 1), ('"lattice-paned,', 1), ('beginning;', 1), ('yeoman', 1), ('forborne', 1), ('realization', 1), ('embarrassed.', 1), ('doings:', 1), ('[second', 1), ('wicker-work', 1), ('pardon,', 1), ('sloped,', 1), ('1s.,', 1), ('necessaries', 1), ('brawny', 1), ('seclusion', 1), ('"pompey', 1), ('dusky', 1), ('self-importance.', 1), ('homeward.', 1), ('coolly.', 1), ('tail,', 1), ('remorse.', 1), ('grieved.', 1), ('covet', 1), ('goat.', 1), ('baby;', 1), ('inclosed', 1), ('unimaginative', 1), ('echoed.', 1), ('breed', 1), ('hearthrug', 1), ('bounds."', 1), ('"tomorrow\'s', 1), ('discontent', 1), ('emotion."', 1), ('tenement', 1), ('links.', 1), ('paternity', 1), ('necktie--the', 1), ('bracket--you', 1), ('slithery,', 1), ('"\'gone', 1), ('complain.', 1), ('unmarried,', 1), ('showery', 1), ('valet----"', 1), ('tastes,"', 1), ('out?', 1), ('enumerate', 1), ('particularly."', 1), ('fluttering', 1), ('oozed', 1), ('cutter.', 1), ('instances', 1), ('booted', 1), ('burden."', 1), ('ye', 1), ('"though', 1), ('tree.', 1), ('freedom."', 1), ('concluding', 1), ('flavor.', 1), ('recollections,', 1), ("idea.'", 1), ('dictated', 1), ('straggling', 1), ('co-operation', 1), ('honourable.', 1), ('ruefully,', 1), ('unaided.', 1), ('cottage."', 1), ('averse,', 1), ('colleagues', 1), ('revisiting', 1), ('derbies."', 1), ('pike.', 1), ('lends', 1), ('packets,', 1), ('carts', 1), ('shallow.', 1), ('myself.\'"', 1), ('trade-mark', 1), ('cathcart', 1), ('"possibly."', 1), ('"\'whatever', 1), ('persons,', 1), ('entitled', 1), ('wellington', 1), ('foot-paths', 1), ('sunset,', 1), ('decrepit."', 1), ('eh,', 1), ('starved', 1), ('middlesex,', 1), ('nap', 1), ('quarter."', 1), ('alternatives?"', 1), ('sympathize', 1), ("gipsy's", 1), ('game-cock', 1), ('excel', 1), ('leanjawed,', 1), ('"wedlock', 1), ('strasburg', 1), ('say--?"', 1), ('cockroaches', 1), ('twenty-seven,', 1), ('robbery?"', 1), ('reformers--revolutionists--nihilists,', 1), ('canterbury;', 1), ('castle,', 1), ('alice,', 1), ('ponies', 1), ('deal-topped', 1), ('caved', 1), ('rifles', 1), ('pheasant', 1), ('serving', 1), ('fault,', 1), ('proudly.', 1), ('ending,', 1), ('desmonds,', 1), ('luck."', 1), ("fact--can't", 1), ('expectancy,', 1), ('sponged', 1), ('club-foot,', 1), ('cleaver', 1), ('peasants.', 1), ('yes."', 1), ('virtues', 1), ('manorial', 1), ('publishers', 1), ('here:"', 1), ('of!', 1), ('guests', 1), ('fanatic', 1), ('stall,', 1), ('managed,', 1), ('post-bag."', 1), ('notches', 1), ('inspired', 1), ("that--'", 1), ('upbraided', 1), ("cannot!'", 1), ('tuson.', 1), ('coram."', 1), ("visitors--'a", 1), ('naive', 1), ('dubbed', 1), ('approve."', 1), ('sweetly.', 1), ('avenger', 1), ('university.', 1), ('presently."', 1), ('conveying', 1), ('sadness', 1), ('tragedy."', 1), ('mounting', 1), ('improvisations', 1), ('banknotes', 1), ('hung.', 1), ('faker,', 1), ("didn't.'", 1), ("stationer's.", 1), ('persecution?"', 1), ('pay-list,"', 1), ('canadian', 1), ('yonder?"', 1), ('scale', 1), ('sell."', 1), ('money,"', 1), ('tempt', 1), ('shopping.', 1), ('equality,', 1), ("maid's,", 1), ('entry', 1), ('globe', 1), ('restaurant,', 1), ('angles.', 1), ('disaster.', 1), ('rubbish', 1), ('made!"', 1), ('briskest', 1), ('2704', 1), ('appointment,"', 1), ('taciturn,', 1), ('wincing', 1), ("lady's--your", 1), ('good-humor.', 1), ("piece?'", 1), ('half-moon', 1), ('school."', 1), ('jail-birds,', 1), ('sorrow!', 1), ('stack', 1), ('tobacco,"', 1), ('used?"', 1), ('restraint,', 1), ('consequences?"', 1), ("hospital,'", 1), ('telegraphing', 1), ('sixteenth', 1), ('sleeps,', 1), ('teutonic', 1), ('"\'holdernesse,', 1), ('tap,', 1), ('excuse.', 1), ('pictured.', 1), ('tug.', 1), ('gentry,', 1), ('forecastle', 1), ('treat,"', 1), ('half-sovereign,', 1), ('wrong-headed', 1), ('hazy,', 1), ('possesses.', 1), ('putty,', 1), ('ecclesiastic', 1), ('clinked', 1), ('otherwise."', 1), ('ears--a', 1), ('fashion--he', 1), ("garden.'", 1), ('notably', 1), ('barred,', 1), ('saintly', 1), ('bibliophile,', 1), ('drawing,"', 1), ('parliament', 1), ('linen,', 1), ('expecting.', 1), ('pole-axed.', 1), ('ill-will,', 1), ('man--square', 1), ("how's", 1), ('ice-field,', 1), ('effigy.', 1), ('climate', 1), ('fortune--of', 1), ('furniture,', 1), ('bengal', 1), ('men?"', 1), ('worldly', 1), ('black-haired', 1), ('chemicals', 1), ('refuses,', 1), ('helped.', 1), ('laws,', 1), ('smart-looking', 1), ("mademoiselle's", 1), ('contralto--hum!', 1), ('received,', 1), ('addressed,"', 1), ('excessive', 1), ('affluent', 1), ('leaded', 1), ("coxon's.", 1), ('banking-house,', 1), ('fired,', 1), ('indicated--that', 1), ('geneva.', 1), ('sight,"', 1), ('hiding-place--that', 1), ('walled', 1), ('trough.', 1), ('fixedly', 1), ("loving,--mary.'", 1), ('birth.', 1), ('dungaree', 1), ('man--stooped,', 1), ('money--not', 1), ('peas', 1), ('india."', 1), ('audits', 1), ('stroke.', 1), ('toes,"', 1), ('series.', 1), ('england--a', 1), ('extinguishes', 1), ('meekly', 1), ("u.s.a.'", 1), ('affair!', 1), ('honeysuckle', 1), ('clings', 1), ('window-sills', 1), ('footman.', 1), ('alterations', 1), ('magistrate.', 1), ('perfumes,', 1), ('holdhurst!"', 1), ('stalked', 1), ('dove-colored', 1), ('berths', 1), ('borgia', 1), ('scoured', 1), ('hat!', 1), ('guessed?"', 1), ('owing', 1), ('speechless', 1), ('seemed!', 1), ('rallied', 1), ("ha'", 1), ('tire.', 1), ('pince-nez,', 1), ('macpherson.', 1), ('illuminating', 1), ('well-grown', 1), ("assistant's", 1), ('mary--mary', 1), ('gummed', 1), ('hurlstone--though', 1), ('occurred,"', 1), ('wedding-dress', 1), ('willows', 1), ('minute!', 1), ('bridge."', 1), ("f.h.m.'", 1), ('rose-bushes.', 1), ('wilhelm', 1), ('revisit', 1), ('sallies', 1), ('judgment."', 1), ('"baker', 1), ('foul--of', 1), ('now--or', 1), ('resolutions.', 1), ('well-groomed', 1), ('symptoms,', 1), ('murder-trap', 1), ('viewed,', 1), ('presence--in', 1), ('paddington.', 1), ('heredity', 1), ('periodically', 1), ('nine,"', 1), ('edith,', 1), ('noble,', 1), ('bulky,', 1), ('hand:', 1), ('hoax,', 1), ('instructive,"', 1), ('prove.', 1), ('easy-chair,', 1), ('eastward', 1), ('exacting,', 1), ('certificate.', 1), ('sounding', 1), ('engines', 1), ("brougham's", 1), ('kin,', 1), ('charts,', 1), ('treatises', 1), ("any.'", 1), ('here"--i', 1), ('reward--coming', 1), ('dreaming.', 1), ('compressed.', 1), ('blackmailers.', 1), ('personality.', 1), ('villain!"', 1), ('dummy,"', 1), ('whole,"', 1), ('determination', 1), ('rays,', 1), ('gilt', 1), ('paramore.', 1), ('tide-waiter."', 1), ('perplexing', 1), ('car', 1), ('untidiness', 1), ('smelling', 1), ('keeping,', 1), ('teens', 1), ('gauged', 1), ('ecliptic,', 1), ('credulous', 1), ('vicar,', 1), ('concerned."', 1), ('"over', 1), ('"alice', 1), ('1888.', 1), ('fortnight.', 1), ('efface', 1), ('tap-room', 1), ('watch-pocket.', 1), ("will-o'-the-wisp,", 1), ('tears', 1), ('cracking', 1), ('postscript.', 1), ('swelter', 1), ("drawing--'", 1), ('stares', 1), ('cut--a', 1), ('distrusted.', 1), ('whims', 1), ('markedly', 1), ('pike,', 1), ('cells."', 1), ('chalk-pit', 1), ('fortune."', 1), ('conspiring,', 1), ('standi', 1), ('thus.', 1), ('charcoal,', 1), ('ulsters', 1), ('hanging,', 1), ('chart.', 1), ('library-chair.', 1), ('staircase.', 1), ('outward,', 1), ('needful', 1), ("wedding':", 1), ('losing,', 1), ('equation,', 1), ('18th."', 1), ('away,"', 1), ('them!', 1), ("reptile's", 1), ('hams', 1), ('princely', 1), ('prayed', 1), ('absorbing."', 1), ('diverted', 1), ('inscription.', 1), ('accusation?', 1), ('lettering,', 1), ('surgeons."', 1), ('"\'"ah,', 1), ('drone', 1), ('entailed', 1), ('adventurous', 1), ('molests', 1), ('tunbridge', 1), ('experienced.', 1), ('golden-haired,', 1), ('pistols.', 1), ('stored', 1), ('portion,', 1), ('management,', 1), ('trivial,"', 1), ('thud.', 1), ('outs,', 1), ('miles."', 1), ('harmony,', 1), ('turrets', 1), ('moss-rose,', 1), ('deigning', 1), ("shaw,'", 1), ('seal."', 1), ('hollows', 1), ('log-fire', 1), ('back--you!', 1), ('creditors.', 1), ("probability,'", 1), ("squire's", 1), ('monasteries', 1), ('fir-woods', 1), ("'hullo!'", 1), ('allowed,', 1), ('taxes,', 1), ('fortescue', 1), ('"\'lately', 1), ('moment--one', 1), ('grounds."', 1), ('representation.', 1), ('undertaking.', 1), ('briarbrae,', 1), ('glands', 1), ('dependents.', 1), ('welbeck', 1), ('stark.', 1), ('cunningham\'s?"', 1), ('stationmaster.', 1), ('corroboration.', 1), ('46', 1), ('hobnobbed', 1), ('follow?"', 1), ('stepfather."', 1), ('forehead."', 1), ('vigil?', 1), ('mopping', 1), ('wooing--and', 1), ('amount,', 1), ("sweating!'", 1), ('rusty-coated', 1), ('moan,', 1), ('poultry', 1), ('warrant.', 1), ('clearer.', 1), ('slouching', 1), ('high-keyed', 1), ('country-trip', 1), ('innumerable', 1), ('sable.', 1), ('mccauley', 1), ('iron-master', 1), ('bell."', 1), ('technically', 1), ('cornelius,"', 1), ('strident,', 1), ('implies,', 1), ("case.'", 1), ('rucastle.', 1), ('constables,', 1), ('waiter.', 1), ('evolve', 1), ('write,"', 1), ('trustees,', 1), ('services."', 1), ('california,', 1), ('cough--"had', 1), ('reaped', 1), ('for;', 1), ('chestnuts', 1), ('exchanges,', 1), ('charge?"', 1), ('palpitating,', 1), ('top-hat,', 1), ('shoving', 1), ('cedars?"', 1), ("surgeon's", 1), ('claim-jumping--which', 1), ('uncongenial', 1), ('then!"', 1), ('entertaining,"', 1), ('gainsaid', 1), ('parties."', 1), ('ignorant,', 1), ('outrage."', 1), ('eminent', 1), ('swordsman,', 1), ('standard,', 1), ("speaker's", 1), ('"\'"so!"', 1), ('half-clad', 1), ("exercise's", 1), ('accidental."', 1), ('incalculable.', 1), ("family?'", 1), ('"theories', 1), ('rate?"', 1), ('binding.', 1), ('relock', 1), ('nailed,', 1), ('outmanoeuvred', 1), ('intake', 1), ('probable,"', 1), ('rascal?"', 1), ('imperilled', 1), ('passions', 1), ('anderson",', 1), ('intermittent', 1), ('knots.', 1), ('wax-coloured', 1), ('maxim', 1), ('lightly.', 1), ('gayeties', 1), ('sneering,', 1), ('goloshes,', 1), ("bed,'", 1), ('repair,', 1), ('landscape.', 1), ('heath;', 1), ('termination', 1), ('plagued', 1), ('must----"', 1), ('ph.d.,', 1), ('ape', 1), ('"godfrey', 1), ('cellar,"', 1), ('doubt--"', 1), ('jane,', 1), ('brooch', 1), ('flag,', 1), ('peg.', 1), ('faddy', 1), ('clutches.', 1), ('saved!', 1), ('anteroom,', 1), ('intrusive,', 1), ('underneath?"', 1), ("master.'", 1), ('officer.', 1), ('bandaged', 1), ('cigarette-box,', 1), ('thumb-nails,', 1), ('deeds', 1), ("magnifico,'", 1), ('embassy,', 1), ('reign', 1), ('has!', 1), ('scaffolding', 1), ('staircases,', 1), ('madness.', 1), ('half-sporting,', 1), ('russell', 1), ('locket,"', 1), ('bodies?"', 1), ('chairs?"', 1), ('embellish,', 1), ('oak-beamed', 1), ('lateral', 1), ('husband--the', 1), ('full-bearded,', 1), ('lump', 1), ("jackson's", 1), ('marker!', 1), ('stair-carpet', 1), ("shame!'", 1), ('december--four', 1), ('reticence,', 1), ('king?"', 1), ('houses."', 1), ('sink.', 1), ('distortion--so', 1), ("clean--that's", 1), ('softened;', 1), ('seizing', 1), ('"twenty-two', 1), ('knuckles,', 1), ('lured', 1), ('crackle,', 1), ('rocked', 1), ('stapleton,"', 1), ('us--no', 1), ('smoked.', 1), ('claspings', 1), ('preferred', 1), ('this"--:', 1), ('crop!"', 1), ("mcquire's", 1), ('match-seller', 1), ('rubber-soled', 1), ('admitting', 1), ('alpine', 1), ('agonies', 1), ('coincidence!', 1), ('trying,"', 1), ('tumbled,', 1), ('1887', 1), ('shamefully--shamefully.', 1), ('gold."', 1), ('surpliced', 1), ('seat?"', 1), ('five-fold', 1), ('fools', 1), ('confidence?"', 1), ('moustached--evidently', 1), ('"engaged."', 1), ('tennessee,', 1), ('crook', 1), ('dryly.', 1), ('faster,', 1), ('14th,', 1), ('blot', 1), ('quagmires', 1), ('uncle?"', 1), ('chemicals,', 1), ('perpetrator', 1), ('come--both', 1), ('oxfordshire,', 1), ('convalescent', 1), ('astonishingly', 1), ('astuteness.', 1), ("animal's", 1), ('intrinsically', 1), ('"to-morrow', 1), ("deer's", 1), ('bellinger,', 1), ('ingenuity,', 1), ('"smart', 1), ('use,"', 1), ('idiot', 1), ("hudson,'", 1), ('throw,', 1), ('spaulding?"', 1), ("band!'", 1), ('sought.', 1), ('cue.', 1), ("'89--there", 1), ('company?"', 1), ('interrupting', 1), ('chums.', 1), ("'varsity,", 1), ('examine?"', 1), ("hatherley?'", 1), ('issued.', 1), ('gifted', 1), ('letter;', 1), ('upon?', 1), ('mystification,', 1), ('robbery."', 1), ('protestation', 1), ('beddington,', 1), ('forgot."', 1), ('10,', 1), ('benevolence', 1), ('continues.', 1), ('clogs', 1), ('flinging', 1), ('gladder', 1), ('"well."', 1), ('ascertain.', 1), ('times;', 1), ('parents.', 1), ('farrier,', 1), ("doubt--'", 1), ('waters', 1), ('caseful', 1), ('racer.', 1), ('shrieking', 1), ('tracks!"', 1), ('labourer.', 1), ('turned.', 1), ('lunch."', 1), ('tackling,', 1), ('traveller.', 1), ('inspiring', 1), ('moorhouse,', 1), ('self-restraint.', 1), ('"remember,', 1), ('phial', 1), ('nobility', 1), ('measurements', 1), ('spluttered', 1), ('romp', 1), ('gothic', 1), ('"\'"the', 1), ("way.'", 1), ("wilson,'", 1), ('we?', 1), ('quiet!"', 1), ('"bought."', 1), ('furnishes', 1), ('soames--they', 1), ('gesticulating,', 1), ("under.'", 1), ('poker."', 1), ('cumbrous.', 1), ("t.,'", 1), ('it--of', 1), ('unseen.', 1), ('voters', 1), ('sunlit', 1), ('impulsively', 1), ('stain,"', 1), ('dog-cart."', 1), ('refuge.', 1), ('rumoured', 1), ('aback,"', 1), ('associations', 1), ('"bannister', 1), ('andaman', 1), ('popularity', 1), ('disturbed?"', 1), ('childbed.', 1), ('screams--my', 1), ('dejected,', 1), ('subordinate', 1), ('soames--at', 1), ('glide', 1), ('celebrity.', 1), ('lurking,', 1), ('springs,', 1), ('spattered', 1), ('burrowing', 1), ('waist', 1), ('park,"', 1), ('sequel,', 1), ('nature,"', 1), ("train.'", 1), ('account;', 1), ('smithy."', 1), ('attention?"', 1), ('corridor-lamp', 1), ('theorizing."', 1), ('effectively."', 1), ('repaid', 1), ('whaler.', 1), ('shaftesbury', 1), ('barrett,', 1), ('alive."', 1), ('last--there', 1), ("barnicot's,", 1), ('abhorrent,', 1), ('tropics.', 1), ('decent,', 1), ('winter.', 1), ('transparent,', 1), ('eyes?"', 1), ('he:', 1), ('handsomely', 1), ('impaired,', 1), ('arranging', 1), ('marvel', 1), ('philosopher', 1), ('athlete', 1), ('professions?', 1), ('punctual', 1), ('dictation,', 1), ('meaning.', 1), ('too?', 1), ('relationship--comes', 1), ('gras', 1), ('led.', 1), ('executing', 1), ('fruit,', 1), ('spectral.', 1), ('pure-bred', 1), ('tap.', 1), ('"percy', 1), ('untouched,', 1), ('custody?"', 1), ('holdings,', 1), ('approaching.', 1), ('fellow-grooms', 1), ('blackmail,', 1), ('imply.', 1), ('character,"', 1), ('keys.', 1), ('crisply', 1), ('cylinders', 1), ('rascal!"', 1), ('infectious,', 1), ('reopened', 1), ('station--the', 1), ('quality,', 1), ('punishes', 1), ('barometric', 1), ('successes--a', 1), ('alarmed.', 1), ('evidently."', 1), ("application!'", 1), ('reeds.', 1), ('englischer', 1), ('consent,', 1), ('eggs.', 1), ('desperate.', 1), ('contents:', 1), ('gesticulation', 1), ('recognition', 1), ('acquire', 1), ('me--a', 1), ('tear-stained', 1), ('right--just', 1), ('newspapers,"', 1), ('trees?', 1), ('m.', 1), ('blunder."', 1), ('norfolk,"', 1), ('itself?"', 1), ('cabinet.', 1), ('evening;', 1), ('bushman', 1), ('wooden-leg', 1), ('hansoms', 1), ('reliability', 1), ('glade.', 1), ('seem."', 1), ('tell?"', 1), ('runners', 1), ('pattins.', 1), ('britannica."', 1), ('whiten,', 1), ('screw,', 1), ("wasn't,", 1), ('sickly', 1), ('courting.', 1), ('incidents?', 1), ('fiercer', 1), ('whom?', 1), ('whist', 1), ('mane', 1), ("'idee", 1), ('baggage', 1), ('weapon."', 1), ('downright', 1), ('line?"', 1), ('photograph?', 1), ('boil,', 1), ('shaw.', 1), ('straggling,', 1), ('unfastened', 1), ('bidding', 1), ('excluded', 1), ('cylinders.', 1), ('scott!', 1), ('fence,', 1), ('blotting-paper,', 1), ('guesswork,"', 1), ('ladyship', 1), ('it--and', 1), ('blotches.', 1), ('authenticity?"', 1), ('bed,"', 1), ('apology,"', 1), ('entail', 1), ('taste,"', 1), ('consoled', 1), ('improve', 1), ('shriek,', 1), ('revengeful', 1), ('supplemented,', 1), ('called?"', 1), ('imagines.', 1), ('intolerant', 1), ("place.'", 1), ('identifying', 1), ('air!"', 1), ('masqueraded', 1), ('cope', 1), ('health."', 1), ('after."', 1), ("long.'", 1), ('employed,', 1), ('natural."', 1), ('poorer', 1), ('mud.', 1), ('patentee', 1), ('outcasts', 1), ('flier,', 1), ('cross-bars', 1), ('antennae', 1), ('fanciful.', 1), ('protrudes', 1), ('mates', 1), ('slipper,', 1), ('hypodermic', 1), ("tutor's", 1), ('"\'"he', 1), ('index', 1), ('measles', 1), ("street.'", 1), ('purred.', 1), ('indorse', 1), ('replies,', 1), ('smithy,', 1), ('thong', 1), ('artistic."', 1), ('finish."', 1), ('reverie,', 1), ('starting.', 1), ('4000', 1), ('k.g.,', 1), ("oliver's", 1), ('chair;', 1), ('wines.', 1), ('bell-pull."', 1), ('"\'absolute', 1), ('honeymoon', 1), ('don\'t!"', 1), ("men.'", 1), ('cloven', 1), ('relapsing', 1), ('short.', 1), ('ceases', 1), ('blankets', 1), ("4.'", 1), ('villa"', 1), ('monosyllables,', 1), ('to-night,"', 1), ('ledger."', 1), ('coarseness', 1), ('merrow,', 1), ('chap,"', 1), ('rashers', 1), ('peterson!"', 1), ('precipitous', 1), ('field.', 1), ('acted--how', 1), ('toe-cap,', 1), ('rheumatism,', 1), ('competence.', 1), ('habits?', 1), ('unexpectedly', 1), ('she\'?"', 1), ('ribbon', 1), ('shadows.', 1), ('talents,', 1), ('don\'t,"', 1), ('purchasing', 1), ('exists,', 1), ('harrison,', 1), ('charm.', 1), ('pew,', 1), ('watchfulness', 1), ('uglier.', 1), ('drawing-room."', 1), ('corps.', 1), ('obedience.', 1), ('charcoal', 1), ('sheer.', 1), ('outfit', 1), ('training-stables', 1), ('butter-dish', 1), ('humors,', 1), ("k.!'", 1), ('himself?', 1), ('rucastle\'s."', 1), ('arrested."', 1), ('"strange,', 1), ("dressing-gown.'", 1), ('features."', 1), ('gold-mines,', 1), ('puffing,', 1), ('imagines', 1), ('player,', 1), ('ribston', 1), ('audacious', 1), ('dining-hall,', 1), ('willing,', 1), ('flavor', 1), ('whizzed', 1), ('"\'bless', 1), ('pasted,', 1), ('workmen', 1), ('disproportionately', 1), ('"\'how?\'', 1), ('dispute', 1), ('lattice', 1), ('absorbing', 1), ('olds.', 1), ("monday,'", 1), ('whom,', 1), ('overlooked?"', 1), ('agonized,', 1), ('flag--to', 1), ("make?'", 1), ('currently', 1), ('alleys', 1), ('surmise."', 1), ('shorter,', 1), ('utensils', 1), ('accent,', 1), ('length.', 1), ('falmouth', 1), ('alexis', 1), ('reliance', 1), ('company,"', 1), ('caged', 1), ('toward', 1), ('lighted,', 1), ('wharves.', 1), ('examination?"', 1), ('"would,', 1), ('vacation', 1), ('scouting', 1), ('suppose.', 1), ('evenings."', 1), ('pounds!', 1), ('staff?', 1), ('sir:', 1), ('performer,', 1), ('trend', 1), ('nick', 1), ("come?'", 1), ('randalls?"', 1), ('africa,', 1), ('treaty,', 1), ('expenses?"', 1), ('echoes', 1), ('convert', 1), ('reseated', 1), ('select?"', 1), ('acquitted,', 1), ('cloth,', 1), ('rasper.', 1), ('rested.', 1), ('toiling', 1), ('smarter', 1), ('dignitaries', 1), ('clay."', 1), ('"pipes', 1), ('way?', 1), ('sheep-marks', 1), ('flat-faced', 1), ('impunity,', 1), ('ring--"', 1), ('yielded--to', 1), ('blackheath', 1), ('carlsbad.', 1), ('origin."', 1), ('sordid', 1), ('life--that', 1), ('satisfied?"', 1), ('utterance.', 1), ('use?"', 1), ("athens.'", 1), ("them's", 1), ('conscientious', 1), ('generation', 1), ('tarnished', 1), ('long-distance', 1), ('atlanta,', 1), ('o\'clock."', 1), ("p.c.'--half", 1), ('emaciated,', 1), ('caraffe.', 1), ("blood.'", 1), ('dressing-table."', 1), ('self-command.', 1), ("'so", 1), ('hillside?"', 1), ('powder-barrel,', 1), ('stake!"', 1), ('richard', 1), ("'rome", 1), ('"now--within', 1), ('preparation', 1), ('devices,', 1), ("obliged.'", 1), ("draught.'", 1), ('cook."', 1), ('scoundrel!', 1), ('regiments', 1), ('memories', 1), ('billets,', 1), ('james."', 1), ('conclusions,', 1), ('mark?', 1), ('carbolised', 1), ('president', 1), ('lewisham', 1), ('unconscious?"', 1), ('deficiencies.', 1), ('ungracious', 1), ('descends', 1), ('expressing', 1), ('name;', 1), ("mccarthy's,", 1), ('reproduced:', 1), ('gull', 1), ('exhaustion--possibly', 1), ('paving', 1), ('what,"', 1), ('key?"', 1), ('"surely.', 1), ('owners', 1), ('bag."', 1), ('embarrassment', 1), ('cabby', 1), ('adventure."', 1), ('augustine.', 1), ('5:14', 1), ('plantation.', 1), ('november.', 1), ('"gone', 1), ('herder,', 1), ('tidying', 1), ('fields."', 1), ('door--the', 1), ('moving,', 1), ("fool's", 1), ('exaggerate', 1), ('retained.', 1), ('correct."', 1), ('promptness', 1), ('red-indian', 1), ('telescope?"', 1), ('price,"', 1), ('tension,', 1), ('hourly', 1), ('neighbourhood."', 1), ('desultory,', 1), ('letters;', 1), ('drab', 1), ('enjoyable,', 1), ('steel."', 1), ('physically', 1), ('specks', 1), ('bleeding.', 1), ('"always."', 1), ('pinion', 1), ('lamp-light.', 1), ('weaknesses', 1), ('"peculiar--that', 1), ('windowsill,', 1), ('anomaly', 1), ('maupertuis', 1), ('whatever,"', 1), ('bellinger!"', 1), ('watson--mental,', 1), ('2.40', 1), ('impassive,', 1), ('hoard,', 1), ('return?"', 1), ('towns', 1), ('commonplace--by', 1), ('undue', 1), ('guards."', 1), ('bannister!"', 1), ("hardware.'", 1), ('seriously."', 1), ('"hullo!', 1), ('cunninghams,', 1), ('leather-leggings', 1), ('steadiness,', 1), ('concluded.', 1), ('shriek.', 1), ('grief--of', 1), ('cross-purposes,"', 1), ('knob', 1), ('spoke--"i', 1), ("desborough's", 1), ('incarnate.', 1), ('swollen,', 1), ('seasonable', 1), ('drowned.', 1), ('intelligent,', 1), ('obtain.', 1), ('row."', 1), ('stable-yard', 1), ('whereat', 1), ('starlit', 1), ('unconsciously', 1), ("plantation.'", 1), ('monkey."', 1), ('wedding-morning,', 1), ('grips', 1), ('plumed', 1), ("quincey's", 1), ('professors', 1), ('absence,', 1), ('hind.', 1), ('mud-stained', 1), ('(1884).', 1), ('wife,"', 1), ('chasm."', 1), ('farmer', 1), ('cassel-felstein,', 1), ('urgently', 1), ('robinson,"', 1), ('gabled', 1), ('7th,', 1), ('applause,', 1), ('escaped?"', 1), ('florence,', 1), ('occurring', 1), ('toller,"', 1), ("'tragedy", 1), ('"bogs', 1), ('skirted', 1), ('penknife.', 1), ('walk?"', 1), ('rope."', 1), ('oven.', 1), ('slates', 1), ('gnawing', 1), ('dialect', 1), ('secretary--it', 1), ('turkish', 1), ('crown.', 1), ('advertisement--how', 1), ('riches', 1), ('before--about', 1), ('maw', 1), ('festivities,', 1), ("market.'", 1), ('practice;', 1), ('ingenious,"', 1), ('unfrocked."', 1), ('wiry', 1), ('wings,', 1), ('better-dressed', 1), ('movements."', 1), ('glass?', 1), ('"\'undoubtedly', 1), ('find--good', 1), ('"elementary,"', 1), ('curiosity,"', 1), ('dull,"', 1), ('cornwall', 1), ('thieves.', 1), ('junction.', 1), ('went?"', 1), ('norway', 1), ('particulars,', 1), ('klan.', 1), ('severed', 1), ('degraded', 1), ('separate?"', 1), ('owed', 1), ('men--"', 1), ('abrasion,', 1), ('sip', 1), ('side-alley', 1), ('magician,"', 1), ('expectation,', 1), ('johannesburg.', 1), ('gibraltar,', 1), ("five.'", 1), ('irresolute,', 1), ('greek.', 1), ('thieves,', 1), ('splintering', 1), ('supernaturalists.', 1), ('violet,', 1), ("home.'", 1), ('skirmishes,', 1), ('mathews,', 1), ('cheap.', 1), ('rift', 1), ('1890', 1), ('class?"', 1), ('deaths,', 1), ('glade', 1), ('deeds--possibly', 1), ('us?', 1), ('snarled.', 1), ('dartmoor."', 1), ('forever,', 1), ("condition?'", 1), ('filthy', 1), ('retention', 1), ("'only", 1), ('men--should', 1), ('two-storied,', 1), ("'les", 1), ('bush."', 1), ('affections', 1), ('soul,"', 1), ('hard-felt', 1), ('gray-headed,', 1), ('chronic', 1), ('sudden,', 1), ('bluntly,', 1), ('begin.', 1), ('melting', 1), ('luggage-van', 1), ('reserve,', 1), ('informed,', 1), ('"somebody', 1), ('injudiciously', 1), ('acid-stained,', 1), ('bias', 1), ('articles?"', 1), ('satin', 1), ('hurry?"', 1), ('rusty,', 1), ('evening--this', 1), ('legation?"', 1), ('characters;', 1), ('valley,', 1), ('truculent', 1), ('corroding', 1), ('splendidly."', 1), ('stumbled.', 1), ('covered,', 1), ('like?"', 1), ('3:15,', 1), ('gate?"', 1), ('legislation', 1), ('boot-lace.', 1), ('bicycle,"', 1), ('parlor?"', 1), ('seen;', 1), ('reporters.', 1), ('tarlton.', 1), ('come.--sherlock', 1), ('viewed', 1), ('self-control,', 1), ('indians', 1), ('astronomers', 1), ('reading--frankland', 1), ('resources.', 1), ('red-covered', 1), ('casket', 1), ('say--that', 1), ('basking', 1), ('enemies.', 1), ('peaty', 1), ("look!'", 1), ("conversation.'", 1), ('hof,', 1), ('interlaken,', 1), ('anglo-indian,', 1), ('tide.', 1), ('forefinger.', 1), ('actionable,"', 1), ('neutral,', 1), ('ruddy-faced,', 1), ('irresistible', 1), ("'60's", 1), ('confusion):', 1), ('bricks,', 1), ('long-standing', 1), ('hosmer--mr.', 1), ('exultant,', 1), ('prejudicial', 1), ('flirting', 1), ('will?', 1), ('freak', 1), ('"within', 1), ('firms', 1), ('meals', 1), ('well-shaped', 1), ('paste', 1), ('hanged.', 1), ('kimberley', 1), ('recently.', 1), ('eyed', 1), ('sturdy,', 1), ('complications', 1), ('pleasures.', 1), ('supposition."', 1), ('privacy', 1), ('remonstrated', 1), ('night-clothes.', 1), ('fires.', 1), ('harker?"', 1), ('trusting', 1), ('docilely', 1), ('consideration."', 1), ('you--i', 1), ('inanition.', 1), ('musket.', 1), ('geese!"', 1), ('men:', 1), ('patient,"', 1), ('fenced', 1), ('forms."', 1), ('ghastly.', 1), ('intention."', 1), ('hungarian', 1), ('site', 1), ('imagined."', 1), ('quickness', 1), ('glints', 1), ("the'", 1), ('neighbors', 1), ('cliffs', 1), ('off-foreleg."', 1), ('characterises', 1), ('supernatural,', 1), ("know,'", 1), ('tended,', 1), ('park.', 1), ('deck,', 1), ('swore.', 1), ('curses', 1), ('collapsed.', 1), ('bandage,', 1), ('"personally', 1), ("rucastle.'", 1), ('formation', 1), ('disagreeably', 1), ('verily', 1), ('promised,', 1), ('typewritist', 1), ('rushes.', 1), ('sincerity', 1), ('labeled', 1), ('good?', 1), ("shikari's", 1), ('johann?"', 1), ('"william', 1), ('leaking', 1), ('deficit.', 1), ('descend,', 1), ('subjected', 1), ('miscalculation,', 1), ('blaze!', 1), ('health.', 1), ('goes!"', 1), ('world!', 1), ('chiffon', 1), ('staple', 1), ('ornament', 1), ('identities.', 1), ('fishing,', 1), ('helen!', 1), ('fastenings', 1), ('joins', 1), ('exerting', 1), ('sheep,', 1), ('slut', 1), ('of,"', 1), ('message?"', 1), ("'now", 1), ('ice-pack', 1), ('bush,', 1), ('lighted.', 1), ('pinkerton', 1), ('coram,"', 1), ('indians,', 1), ('hip-pocket', 1), ('grim,', 1), ('spartan', 1), ('mixture,', 1), ('centre?"', 1), ('such.', 1), ('dark-eyed,', 1), ('decade,', 1), ('pondered.', 1), ('hills,', 1), ('prejudice', 1), ('slow-witted', 1), ('scandinavia.', 1), ('intimacy."', 1), ('carouse,', 1), ('red-heads', 1), ('amiss?"', 1), ('clank', 1), ('king.', 1), ('jaw."', 1), ("mary's", 1), ("williams's,", 1), ('mortals.', 1), ('whale', 1), ('half-penny', 1), ('twig."', 1), ('camberwell', 1), ('tregellis,', 1), ('creamy', 1), ('parson', 1), ('inextricable', 1), ('misadventures.', 1), ('singularity', 1), ('trincomalee,', 1), ('hotels."', 1), ('o\'clock.\'"', 1), ('"\'pooh!\'', 1), ('facilitate', 1), ('yet--though', 1), ('commented', 1), ('glee,', 1), ('prescribed', 1), ('requested.', 1), ('intrinsic', 1), ('offered."', 1), ('tradespeople,', 1), ('loafer.', 1), ('aiding', 1), ('hampshire,', 1), ('expired.', 1), ("'co.'", 1), ('sorely,', 1), ('across."', 1), ('white-aproned', 1), ('waters.', 1), ('ourselves--a', 1), ('countryman,', 1), ('raved', 1), ('crony', 1), ('cultured', 1), ('hunting-crop,', 1), ('not--"', 1), ('skins', 1), ('condoned', 1), ('nursery', 1), ("be.'", 1), ('grit', 1), ('tonight?"', 1), ('eaves,', 1), ('theory."', 1), ('detectives,"', 1), ('consult,', 1), ('openshaw\'s."', 1), ('sulky', 1), ('waist-high,', 1), ('them--in', 1), ('"\'trust', 1), ('invalids', 1), ('torrington', 1), ("musgrave?'", 1), ('shoes?"', 1), ('nervousness', 1), ('discreetly."', 1), ('adorn', 1), ('deceased.', 1), ('songs', 1), ("resign,'", 1), ('grin', 1), ('"\'"for', 1), ('lost."', 1), ('sulkily,', 1), ('wildness', 1), ('assured.', 1), ('scrawling', 1), ('good-sized', 1), ("for----'", 1), ('soul!"', 1), ('overhead,', 1), ('collar-ends', 1), ('her--god', 1), ('warily', 1), ('clark', 1), ('baleful', 1), ('simpson."', 1), ('confidentially;', 1), ('disappearance--are', 1), ('convulsed.', 1), ('strong-set', 1), ('man--a', 1), ('comforted', 1), ('opening?"', 1), ('forty-grain', 1), ("consultation?'", 1), ('pen-knife."', 1), ('quoting', 1), ('undertaken.', 1), ('sitting-rooms', 1), ('members,', 1), ('baskerville!', 1), ('marriage;', 1), ('yawns.', 1), ('rope--each', 1), ('it:', 1), ('bleak,', 1), ('iota', 1), ('rasping', 1), ('lineament,', 1), ('keel', 1), ("dealer's?'", 1), ('stands.', 1), ('exhortation', 1), ('firm-set,', 1), ('grocer,', 1), ('door--surprise', 1), ('loudly,"', 1), ('refuse?"', 1), ('nut-cracker', 1), ('listened,', 1), ('"indeed,"', 1), ('whim.', 1), ('anyone,', 1), ('lyons?"', 1), ('authorities,', 1), ('well-deserved', 1), ('snoring', 1), ('fliers,', 1), ('tout!"', 1), ('impersonal', 1), ('apology.', 1), ('opportunity.', 1), ('rapidity.', 1), ('expound."', 1), ('widespread,', 1), ("lady,'", 1), ('acquiesce', 1), ('hugging', 1), ('established.', 1), ('"morally,', 1), ('cabin."', 1), ('maid-servants', 1), ('spectators,', 1), ('case!"', 1), ('manifestations', 1), ('him----"', 1), ('possibilities.', 1), ('nipper?', 1), ('mastiff."', 1), ('borgias."', 1), ('ruthless', 1), ('too--there', 1), ('window,"', 1), ('entreated', 1), ('chicken.', 1), ('"seems', 1), ('insignificant-looking', 1), ('gold?"', 1), ('exact--dr.', 1), ('staring.', 1), ('paleness', 1), ('europe,', 1), ('error,', 1), ('felon', 1), ('hare', 1), ('cavalry', 1), ('deductions."', 1), ('arab,', 1), ('saltire--a', 1), ('tickled', 1), ('direct,', 1), ('friends?"', 1), ('disheveled,', 1), ('trying,', 1), ('object?"', 1), ('"speaking', 1), ('tapered', 1), ('puerile', 1), ('lichens,', 1), ('far,"', 1), ("made,'", 1), ('long-bladed', 1), ('provisional', 1), ('light."', 1), ('"\'jephro,\'', 1), ('furze-bush,', 1), ('untidy,', 1), ('thicket,', 1), ('rebellion', 1), ('tonight!', 1), ("brackenstall's", 1), ('netherland-sumatra', 1), ('uncovering', 1), ('slop-shop', 1), ('o\'clock,"', 1), ('epistle,"', 1), ("canary's", 1), ('chasm,', 1), ('performed.', 1), ('"drop', 1), ('boards."', 1), ('pools', 1), ('sympathy,', 1), ('grinding', 1), ('trying."', 1), ('steps;', 1), ('americans', 1), ('withheld?"', 1), ('ringlets.', 1), ('side-table."', 1), ('writ', 1), ('book-making', 1), ('mentions', 1), ('thunderstruck', 1), ('reverie.', 1), ('cake."', 1), ('exertion,', 1), ('fantastic.', 1), ('carriage-building', 1), ('kaleidoscope', 1), ('tray', 1), ('goes.', 1), ("landowner's", 1), ('regularity', 1), ("devil,'", 1), ('iodoform,', 1), ('repulsion', 1), ('"\'fritz!', 1), ('"failure,', 1), ('awry.', 1), ('halifax,', 1), ('unchanged', 1), ('unshaven', 1), ('supernatural."', 1), ("lady's,", 1), ('"while', 1), ('earliest', 1), ('hutch', 1), ('concise:', 1), ('treachery,', 1), ('oscillating', 1), ('spill', 1), ('lanes.', 1), ('compromised.', 1), ('darting,', 1), ('cooperation,', 1), ('canterbury."', 1), ('typewriting,', 1), ('"disease?"', 1), ('proosia,', 1), ('uniform.', 1), ('yes:', 1), ('free."', 1), ('boldly,', 1), ('heartless', 1), ('room!', 1), ('"encyclopaedia"', 1), ('shrink', 1), ('impressive,', 1), ('incredulously', 1), ('fourth--and', 1), ('eight.', 1), ('caste', 1), ('"warm!', 1), ('flaw,', 1), ('guilty."', 1), ('hayes,"', 1), ('imitation,', 1), ('princetown,', 1), ('roylott,"', 1), ('counts', 1), ('discovery.', 1), ('wet,', 1), ('clouded,', 1), ('persevering', 1), ('desmond', 1), ('tallied', 1), ("d'albert.", 1), ('billycock', 1), ('stars.', 1), ('"\'are', 1), ('pounds?"', 1), ('you--two', 1), ('estates.', 1), ('roared.', 1), ('flap,', 1), ("matter,'", 1), ('parapet', 1), ('indian.', 1), ('intimacy,', 1), ('water-tap', 1), ('responsibility.', 1), ('hayward,', 1), ('transports', 1), ('takings', 1), ('"inquiries', 1), ('views.', 1), ("choked,'", 1), ('sensational,', 1), ('overton."', 1), ("pounds?'", 1), ('pestering', 1), ('rack,', 1), ('assumed.', 1), ("professor,'", 1), ("stapleton's.", 1), ('ungainly', 1), ('relocked', 1), ('gravel-drive', 1), ('equestrian', 1), ('sink,', 1), ('stockholders', 1), ('gave!', 1), ('staggering', 1), ('bewildered,"', 1), ('apparition.', 1), ('biassed.', 1), ('nowadays.', 1), ('waiting,"', 1), ('sternly,', 1), ("'55", 1), ('asks', 1), ('apart,', 1), ('watch--all', 1), ('questions."', 1), ('meditation,', 1), ('unwell', 1), ("else's", 1), ('ending."', 1), ('"leave', 1), ('exact--i', 1), ('veil.', 1), ('roost,', 1), ('mossy', 1), ('cleverest', 1), ('fulfilling', 1), ('amidst', 1), ('boot-slitting', 1), ('exhaust', 1), ('confidant.', 1), ('now--was', 1), ('defeated', 1), ('article.', 1), ('dismayed,', 1), ('rooms--the', 1), ('hydrochloric', 1), ('inside?"', 1), ('munro,', 1), ('murderers.', 1), ('allegro.', 1), ('kennedy,', 1), ('prank--upon', 1), ('old-established', 1), ('lame."', 1), ('sheep-dogs', 1), ('beginning,', 1), ('inaction', 1), ('cultivating', 1), ('scissors--"', 1), ('ninety-six,', 1), ('nancy,', 1), ('weekly', 1), ('vicious,', 1), ('city."', 1), ('mentioned.', 1), ('hack,', 1), ('guilt;', 1), ('upset,', 1), ('docks,', 1), ('either?"', 1), ('rafters,', 1), ('dine.', 1), ('astonishing,"', 1), ('3rd,', 1), ('seventeen,', 1), ('age--a', 1), ('blind!"', 1), ('tint', 1), ('abhor.', 1), ('lichen', 1), ('journeying', 1), ('republic,', 1), ('quarter-mile', 1), ('lengthen', 1), ('guilt.', 1), ('scores', 1), ('flagons', 1), ('future!', 1), ('proceeded.', 1), ('commiserating', 1), ('inflicting', 1), ('"couldn\'t', 1), ('mongoose,"', 1), ('magnates,', 1), ('tact.', 1), ('lisping', 1), ('three-quarter,', 1), ('reassured', 1), ("expected,'", 1), ('style.', 1), ("'omne", 1), ('gesticulated', 1), ('view--the', 1), ('burglar--and', 1), ('annual', 1), ('pursuing.', 1), ('daytime,', 1), ('moves', 1), ('spread,', 1), ('animosity?"', 1), ('piqued', 1), ('hemorrhage', 1), ('gig', 1), ('department,"', 1), ('help?"', 1), ('writers', 1), ('householders', 1), ('forever?', 1), ('bedraggled.', 1), ('"hen-pheasants"?\'', 1), ('existing', 1), ('professionally', 1), ('paisley', 1), ('forebodings.', 1), ('pippin', 1), ('unavenged.', 1), ("partner's", 1), ('grip,"', 1), ("value.'", 1), ('fair,', 1), ('struggled,', 1), ('maker,', 1), ('stock.', 1), ('non-appearance', 1), ('reassuring', 1), ('periodicals.', 1), ("doctor?'", 1), ('overwhelmingly', 1), ('slate', 1), ('coquettish', 1), ('sequin-covered', 1), ('whoa,', 1), ("don't!", 1), ('gnawed', 1), ('rake.', 1), ('darken', 1), ('ring-finger,', 1), ('v,', 1), ('warrant."', 1), ('moves.', 1), ('dipping', 1), ('accord.', 1), ('pillar.', 1), ('zoology,', 1), ('posts,"', 1), ('protested.', 1), ('piece,', 1), ('club."', 1), ('fairer', 1), ('"\'done!\'', 1), ('"the...game...is,"', 1), ('footmen', 1), ("tact?'", 1), ('massed', 1), ('unguarded?"', 1), ('escaped;', 1), ('decision', 1), ('winning,', 1), ('proof,', 1), ('apache', 1), ('becher\'s."', 1), ('locus', 1), ('compliance."', 1), ('warren', 1), ('turbulent', 1), ('englishwoman', 1), ('ambush', 1), ('sat."', 1), ('such."', 1), ('hopes?', 1), ('memoranda,', 1), ('heat', 1), ('boxes.', 1), ('submerged', 1), ('dominated', 1), ('lies,', 1), ('rushed,', 1), ('marengo,', 1), ('battalion', 1), ("that.'", 1), ('waylaid.', 1), ('change,', 1), ('coated', 1), ('fir-trees', 1), ('longer;', 1), ('mirror', 1), ('wealthiest.', 1), ('cameos,', 1), ('muscles,', 1), ('chronicler', 1), ('incidental.', 1), ('immediately.', 1), ('number!"', 1), ('skull."', 1), ('rendered', 1), ('betokened', 1), ('desired.', 1), ("lucas's", 1), ('wrists', 1), ('number.', 1), ('possibly--i', 1), ('window-sill', 1), ('"besides', 1), ('harshness', 1), ('shins.', 1), ('havana,', 1), ('handle-bar', 1), ('foot-worn', 1), ('camera.', 1), ('straw?"', 1), ('ripping', 1), ('swindon,', 1), ("masters.'", 1), ('cinder', 1), ('passing.', 1), ('majestic', 1), ('privately,', 1), ('conviction--"i', 1), ("yonder,'", 1), ('sings.', 1), ('ups', 1), ('pains,"', 1), ('once.\'"', 1), ('slab.', 1), ('endeavour,', 1), ('harm?', 1), ('frigid', 1), ('desperately.', 1), ('groaning', 1), ('embassy."', 1), ('"capital', 1), ('bristol.', 1), ('nettled.', 1), ('direct.', 1), ('"good-evening.', 1), ('liberated,', 1), ('gas-jets.', 1), ('turns.', 1), ('incongruous', 1), ('charges,', 1), ('us!"', 1), ('moors,', 1), ('civilians', 1), ("consolidated?'", 1), ("godfrey's", 1), ('moor-path', 1), ('interesting!"', 1), ('drooping,', 1), ('paradoxical."', 1), ('varnish,', 1), ('below,"', 1), ('tenanted', 1), ('guardianship,', 1), ('safes.', 1), ("there!'", 1), ('lacks.', 1), ('trunks', 1), ('conundrum', 1), ('brother-in-law.', 1), ('admirably.', 1), ("favorite's", 1), ('burglaries', 1), ('re-marriage.', 1), ('puppets', 1), ('artery.', 1), ('writing.', 1), ('merchants.', 1), ('inert', 1), ('affably.', 1), ("eva's", 1), ('raced', 1), ('sinking.', 1), ('good-bye;', 1), ('section', 1), ('blackmailer,', 1), ('sharply,', 1), ('wasteful', 1), ('happened?"', 1), ('robbers', 1), ('wished."', 1), ('"\'hudson', 1), ('frankland.', 1), ('own?', 1), ('stamps', 1), ('chanced,', 1), ('laurels.', 1), ('madam!', 1), ('person,"', 1), ('womanly.', 1), ('harpoon,', 1), ('fierce-looking', 1), ("wretch's", 1), ("nature.'", 1), ('attribute', 1), ('colonial', 1), ('trip--but', 1), ('myself;', 1), ("blackguard!'", 1), ('school,"', 1), ('maddest,', 1), ('transform', 1), ('deathbeds,', 1), ('dusk,', 1), ('cow-tracks', 1), ('essential--absolute', 1), ('flitted', 1), ('humiliation."', 1), ('excused', 1), ('particularly,', 1), ('please.', 1), ('indented', 1), ('café', 1), ('suspected--in', 1), ('again--of', 1), ('response.', 1), ('métier,', 1), ('level?"', 1), ('sash', 1), ('divan,', 1), ('sings', 1), ("sophy!'", 1), ('unpardonable', 1), ('unravel.', 1), ('slipping.', 1), ('architectural', 1), ('significance.', 1), ('pokers', 1), ('self-composure.', 1), ('trimmed', 1), ('imagination,', 1), ('exhibiting', 1), ('mister', 1), ('opportunities.', 1), ('loosen,', 1), ('distraction.', 1), ('band?"', 1), ("plumber's", 1), ('interest.]', 1), ('six-fifteen', 1), ('sanity', 1), ('elsewhere', 1), ('merripit,', 1), ('duty,"', 1), ('moths', 1), ('untouched', 1), ('unobservant', 1), ('peasant,', 1), ('close-fitting', 1), ('stain"', 1), ('"\'his', 1), ('one"--he', 1), ('habitation.', 1), ('shiver,', 1), ('dresses', 1), ('choking,', 1), ('stoutly', 1), ('cardiac', 1), ('salver.', 1), ('forbear', 1), ('proficient', 1), ('asking.', 1), ('munro--"', 1), ('miss.', 1), ('wooded', 1), ('incurably', 1), ('tinkle', 1), ('tut!"', 1), ('peoples', 1), ('granite-flecked', 1), ('august,', 1), ('uncourteous', 1), ('half-drew', 1), ('dorking?', 1), ('larceny,', 1), ('aldersgate;', 1), ('passed."', 1), ('fronts', 1), ("easily.'", 1), ('watson--abduction!', 1), ('frenzy.', 1), ('bolted,', 1), ('quest,', 1), ('tomboy,', 1), ('league:', 1), ('boxer', 1), ('left--and', 1), ('good-mornings', 1), ("'go", 1), ('fallacies', 1), ('sufferer.', 1), ('field-glass."', 1), ('l200.', 1), ('cravats.', 1), ('black-letter', 1), ('layers', 1), ('gloves.', 1), ('tie.', 1), ('negroes,', 1), ('stair!"', 1), ('ravens,', 1), ('brougham.', 1), ('forgetting', 1), ('tones.', 1), ('fiction', 1), ('peril', 1), ('headache,', 1), ('whittington.', 1), ("14'", 1), ("all,'", 1), ('contents,', 1), ('examiners.', 1), ('minutes,"', 1), ('londoners,', 1), ('enemies?', 1), ('arriving', 1), ('"absolutely!"', 1), ('country."', 1), ("'e's'", 1), ('final;', 1), ('promptings', 1), ('blue-lipped', 1), ('awake.', 1), ('capacity,', 1), ('purses', 1), ('fireplace."', 1), ('bookcase,', 1), ('1869', 1), ('pencil,"', 1), ('delicacy.', 1), ('locally.', 1), ('agile', 1), ('"small,', 1), ('stirring,', 1), ('chimed,', 1), ("o'groat's,", 1), ('psychology,', 1), ('animation,', 1), ('carere', 1), ('"none;', 1), ('princess.', 1), ('know--how', 1), ('hudson,"', 1), ('stations,', 1), ('check-book', 1), ('terrorising', 1), ('side!"', 1), ('devouring', 1), ('thatched', 1), ('snug', 1), ('ventilate.', 1), ('tigerskin', 1), ('maybe,', 1), ('stepped,', 1), ('unceremonious', 1), ('wagonette.', 1), ('lucidity', 1), ('spaces', 1), ('cabin', 1), ('running,', 1), ('strasburg.', 1), ('"owe!"', 1), ('soften', 1), ('fifty-pound', 1), ('advantages,', 1), ("alive!'", 1), ('blackwell,', 1), ('hook,', 1), ('ears."', 1), ('abbey,', 1), ('wakeful,', 1), ("'letters,", 1), ('gaelic,', 1), ('pass.', 1), ('bee', 1), ('pennies,', 1), ('snow.', 1), ('loathe', 1), ('watchers', 1), ('editions?"', 1), ('winter,', 1), ('nook', 1), ('muscles,"', 1), ('anxieties.', 1), ('eyeglasses?"', 1), ('deduce."', 1), ('facet', 1), ('varnish.', 1), ('holiday', 1), ('batch', 1), ('life;', 1), ('stepping-stones', 1), ('visits?"', 1), ('diet', 1), ('inflicted,', 1), ('thanking', 1), ('juries', 1), ('emperor', 1), ('suit--the', 1), ('minister,', 1), ('worse.', 1), ('"h"', 1), ("say!'", 1), ('outsides', 1), ('wife--mrs.', 1), ('intended.', 1), ('acid-faced', 1), ('anxious,', 1), ('considerate,"', 1), ('doctrine', 1), ('mumble,', 1), ('mud-stains', 1), ('archery', 1), ('justified.', 1), ('thoroughbred.', 1), ('forced--when', 1), ('intent.', 1), ('mediaeval', 1), ('breckinridge', 1), ('esquimau?"', 1), ('baron', 1), ('revoir,', 1), ('predispose', 1), ('seem,"', 1), ('"villain!', 1), ('shrinks', 1), ('negotiations', 1), ('coat-of-arms,', 1), ('under.', 1), ("'hen-pheasant'?", 1), ('tumbler', 1), ('ignited', 1), ('thief!"', 1), ('ship!', 1), ('blurted', 1), ('ever."', 1), ('post-mortem', 1), ('"experience,"', 1), ('sign,', 1), ('silent!', 1), ('fall?"', 1), ('holmes--and', 1), ('burying', 1), ('wasted!"--my', 1), ('9th', 1), ('obedience', 1), ('treaty.', 1), ('bermuda', 1), ('pub', 1), ('world-wide', 1), ('obscurities', 1), ('shoe,', 1), ('moat', 1), ('airs.', 1), ('dominant,', 1), ('scandalous', 1), ('abruptly.', 1), ('secure--a', 1), ('dowry', 1), ('stimulated', 1), ('habitable.', 1), ('servant?"', 1), ('pony', 1), ('desired,', 1), ('inclination', 1), ('dilate', 1), ('helpless,', 1), ('conventions', 1), ('call?"', 1), ("way,'", 1), ('orchids.', 1), ('marks."', 1), ('50', 1), ('gilchrist.', 1), ('trailer', 1), ('throats.', 1), ('rejoice,', 1), ('fairbank,', 1), ('fangs?', 1), ('consume."', 1), ('fooled', 1), ('mortimers,', 1), ('dieppe.', 1), ('gravely,', 1), ("saturday's", 1), ('wrenching', 1), ('available', 1), ("'lever,'", 1), ('sunday', 1), ('slip,', 1), ('us--"', 1), ('pigeonhole', 1), ('three-quarters', 1), ('singular-looking', 1), ('nobly', 1), ("claim.'", 1), ('alight', 1), ('similarity', 1), ('rue', 1), ('reactions', 1), ('dislodged', 1), ('named,', 1), ('later--that', 1), ('starvation', 1), ('forgery.', 1), ('mend', 1), ('ripley,', 1), ('boots--gave', 1), ('westminster."', 1), ('bad.', 1), ('culminating', 1), ('boundary', 1), ('chesterfield.', 1), ('fleshy', 1), ("away,'", 1), ('chains', 1), ('morning--well,', 1), ("carruthers's", 1), ('main-truck.', 1), ('rank.', 1), ('tufted', 1), ('retiring.', 1), ('gas-lit', 1), ('startled.', 1), ('fore-shadowed', 1), ('directory,"', 1), ('negro.', 1), ('published', 1), ('persuasions', 1), ('flannel', 1), ('devonshire."', 1), ('lens."', 1), ('organized', 1), ('bedroom,"', 1), ('discovery?"', 1), ('penang-lawyer', 1), ('tobacconist,', 1), ('three-legged', 1), ('embellishment', 1), ("boys,'", 1), ('along,"', 1), ('police-court."', 1), ('choice.', 1), ('precipitous.', 1), ('occasions.', 1), ('sympathies,', 1), ('whole.', 1), ('oscillates,', 1), ('neglect.', 1), ('considering."', 1), ('simplified', 1), ('hillside', 1), ('basket,', 1), ('passage-lamp', 1), ('gulped', 1), ('keeper', 1), ("jem.'", 1), ('legibility', 1), ('sobs', 1), ('barclay;', 1), ('uproar,', 1), ('performance,', 1), ("bridge.'", 1), ('dubugue', 1), ('hell-fire', 1), ('amounts', 1), ('dane,', 1), ('seamen', 1), ('sleepily', 1), ('loft."', 1), ('behold', 1), ('maze', 1), ('susan?"', 1), ('"starving.', 1), ('leaping', 1), ('weight,', 1), ("worth.'", 1), ('faces?', 1), ('jokes,', 1), ('swirling', 1), ('spot,"', 1), ('hurlstone.', 1), ('fainting', 1), ('exist,', 1), ('grooms', 1), ('two-and-twenty', 1), ('crown."', 1), ('nightshirt,', 1), ("family.'", 1), ('personally,', 1), ('suppers."', 1), ("secret.'", 1), ('are:', 1), ('misread', 1), ('tomfoolery."', 1), ('watson--her', 1), ('publicly', 1), ('clerk,', 1), ("way?'", 1), ('independent.', 1), ('joint.', 1), ('arduous', 1), ('stalk', 1), ('bourgeois', 1), ('fact--of', 1), ('night--a', 1), ('(journal', 1), ('trifles', 1), ('carafe."', 1), ('workman--one', 1), ('offer,"', 1), ('ribbons.', 1), ('guards', 1), ('"bring', 1), ('worn,"', 1), ('chestnut.', 1), ('little?', 1), ('curb.', 1), ('launched,', 1), ('gritty,', 1), ('erect.', 1), ('twopence,', 1), ('nail,', 1), ('220', 1), ('alliance', 1), ('cobwebby', 1), ('think--and', 1), ('coachman!"', 1), ('ennui,"', 1), ('cantonments,', 1), ('ashes,', 1), ('church?', 1), ('evident."', 1), ('father\'s."', 1), ('overton.', 1), ('gush', 1), ('hunter;', 1), ('transfixed.', 1), ('agents.', 1), ('cocktail', 1), ('imperfectly', 1), ('accidents,', 1), ('belief.', 1), ('readiness', 1), ('flames,', 1), ('apply,', 1), ('thurston', 1), ('off;', 1), ('plantagenet', 1), ('smasher,', 1), ('"\'five', 1), ('banged,', 1), ('transfer', 1), ('reference.', 1), ('talked,', 1), ('cuffs', 1), ("street?'", 1), ('bell-rope?"', 1), ('stray', 1), ("fingers'", 1), ('tape,', 1), ('died?', 1), ('arteries', 1), ('demon;', 1), ('source,', 1), ('extent,"', 1), ('snakish', 1), ('locks,', 1), ('1100', 1), ('apprehension,', 1), ('strewed', 1), ('green,', 1), ('emerald', 1), ('pilot', 1), ("helen,'", 1), ('combated', 1), ('hesitate?"', 1), ('thawed', 1), ('outlook', 1), ('insincere', 1), ('wonders.', 1), ('thief?', 1), ('casual', 1), ('freshness', 1), ('thoughtful.', 1), ('matting--and', 1), ('rash', 1), ('1742."', 1), ('cutlets', 1), ('opened."', 1), ('crusted', 1), ('cross-questioned,', 1), ('rearranged', 1), ('rakish', 1), ("'remember", 1), ('"soames', 1), ('box?"', 1), ('failures.', 1), ('childish.', 1), ('break?', 1), ('locked."', 1), ('wharf,', 1), ('billiard-marker', 1), ('noose.', 1), ('soothed', 1), ('lose."', 1), ('successful.', 1), ('color-sergeant', 1), ('happiness.', 1), ('same."', 1), ('trevor?"', 1), ('smack', 1), ('nothing?', 1), ('exhausting', 1), ('defiant.', 1), ('clubs:', 1), ('ejected', 1), ('match-box', 1), ('fareham', 1), ('"head-keepers"', 1), ('takings--but', 1), ('frustrated.', 1), ('anyway,', 1), ("taken.'", 1), ('took,', 1), ('noise.', 1), ('"\'put', 1), ('zero,', 1), ('monarch', 1), ('hooliganism', 1), ('traditions.', 1), ('sprightly,"', 1), ('banks.', 1), ('"gloves,"', 1), ('altercation.', 1), ('recalling', 1), ('iris', 1), ('elegant', 1), ('kneeled', 1), ('historian', 1), ('squires', 1), ('university--i', 1), ('represented,', 1), ('fulfilled,', 1), ('bluff,', 1), ('unconventional', 1), ('operatic', 1), ('expectantly', 1), ('new-comers', 1), ('points?"', 1), ('co-operation."', 1), ('up--with', 1), ('landing-stages."', 1), ('headquarters', 1), ('riddle."', 1), ('fagged', 1), ('eva,', 1), ('ungloved', 1), ('year,"', 1), ('harness."', 1), ('alternatives.', 1), ('strand,', 1), ('porch.', 1), ('condone', 1), ('explain,', 1), ('gilchrist?"', 1), ('harrison?"', 1), ("encyclopaedia'", 1), ('disconsolate', 1), ('a.e', 1), ('perspiration,', 1), ('fortnight--say', 1), ('"six', 1), ('exciting.', 1), ("time.'", 1), ('k.,', 1), ('gloom."', 1), ('guessed.', 1), ('freely,"', 1), ('causeway,', 1), ('draft.', 1), ('commonplace.', 1), ('drugs.', 1), ('affair?"', 1), ('knifed', 1), ('testily.', 1), ("worth?'", 1), ('"later.--it', 1), ('..e', 1), ('paralyze', 1), ('forfeited."', 1), ('fellow-citizens', 1), ('altar,', 1), ('charred.', 1), ('custody.', 1), ('conclusive', 1), ('prescription', 1), ("affairs.'", 1), ('since?"', 1), ('waldbaum,', 1), ('candelabra', 1), ('crammed', 1), ('discolored', 1), ('shall,', 1), ('brier', 1), ('footprint,', 1), ('dishonest', 1), ('horror-stricken,', 1), ('potentate--was', 1), ('celt,', 1), ('undertaking', 1), ('seating', 1), ('door--"and', 1), ("'sophy!", 1), ('convulsively.', 1), ('taken."', 1), ('importance;', 1), ('aptitudes.', 1), ('bring,', 1), ("'first", 1), ('boswell.', 1), ('dovercourt', 1), ('m.r.c.s."', 1), ('accessories,', 1), ('man-eating', 1), ('desultory', 1), ('windfall', 1), ('glades', 1), ('his,"', 1), ("'have", 1), ("mawson's?", 1), ('thoroughfare;', 1), ('flowery', 1), ('cargo.', 1), ('anyhow!', 1), ('baskervilles,', 1), ('pounds;', 1), ('courtesy,', 1), ("cabinet.'", 1), ('st.--', 1), ('draw?"', 1), ('pedals.', 1), ('scott_"', 1), ('deserted."', 1), ('"immediately', 1), ('"excellent."', 1), ('creatures', 1), ('threatened."', 1), ('remembrance', 1), ('"speak', 1), ('calmly,', 1), ('after-hold.', 1), ('"save,', 1), ('snapshot', 1), ('retire,', 1), ('painfully,', 1), ('parliament.', 1), ('names?"', 1), ('"footprints?"', 1), ('inadmissible."', 1), ('"tired-looking', 1), ('crimea', 1), ('preserves.', 1), ('july', 1), ('accepted,', 1), ('miser,', 1), ('taxes', 1), ('baldly', 1), ('bush.', 1), ('holdernesse?"', 1), ('initials,', 1), ('you:', 1), ('course?', 1), ("arthur's.", 1), ('hid,', 1), ('truth"--he', 1), ('quarrels,', 1), ('quoted,', 1), ('golf', 1), ('memories.', 1), ('post,"', 1), ('strenuously', 1), ("security.'", 1), ('warren."', 1), ('ask--an', 1), ('cantering,', 1), ("empire,'", 1), ('prospered,', 1), ('then:', 1), ('suicide?"', 1), ('pleasantry."', 1), ("us,'", 1), ('"\'ay,', 1), ('formalities', 1), ('noblest,', 1), ('remotest', 1), ('succeeded?"', 1), ('are!"', 1), ('wooing,', 1), ('minute,"', 1), ('galvanised.', 1), ('interruption.', 1), ('half-pennies--421', 1), ('paper,"', 1), ("spot.'", 1), ('dapper,', 1), ('refusal.', 1), ('wide.', 1), ('youngster,', 1), ('were--then', 1), ('insect.', 1), ('attacks,', 1), ('harpooner.', 1), ("john?'", 1), ('confer', 1), ('receded.', 1), ('note-paper', 1), ('strident', 1), ('paneling', 1), ('unobtrusive', 1), ('saddle.', 1), ('globe,', 1), ('black-clothed', 1), ('recherché."', 1), ('presentation.', 1), ('12.', 1), ('connivance', 1), ('extends', 1), ('scantily', 1), ('gorse', 1), ('intrigue,', 1), ('lumber-rooms', 1), ('iron-works', 1), ('probability--and', 1), ('23d.', 1), ('clerk,"', 1), ('bus', 1), ('creeping,', 1), ('twenty-six,', 1), ('loophole,', 1), ('teddy?"', 1), ('colonies', 1), ('waged', 1), ('newhaven,', 1), ('mutual.', 1), ('disjecta', 1), ('south-west,', 1), ('hiding,', 1), ("acton's", 1), ('natural.', 1), ('carstairs,', 1), ('sterner,', 1), ('headed', 1), ('"thirty', 1), ('whirled', 1), ('race,"', 1), ('whitney', 1), ('scraps', 1), ('bear."', 1), ('canteens', 1), ('slate.', 1), ('house--sweet,', 1), ('"heavens,', 1), ('orphanage', 1), ('accomplishment.', 1), ('tool-house,', 1), ('well-furnished', 1), ('wee', 1), ('clanking', 1), ('flying.', 1), ('improbability', 1), ('educated.', 1), ("'66,", 1), ('equalled.', 1), ("'how", 1), ('elements--blown', 1), ('holiness', 1), ('moody', 1), ('amalgam', 1), ('visits?', 1), ('hissing', 1), ('continuing', 1), ('murdered--the', 1), ('sholtos."', 1), ('orientals', 1), ('earrings,', 1), ('flowers----good', 1), ('beetle-ridden,', 1), ('kate', 1), ('wrong;', 1), ("shan't", 1), ('assizes,', 1), ('wink', 1), ('gulp,', 1), ('ventilators', 1), ('telegrams.', 1), ('impossible!"', 1), ('abound', 1), ('patent-leather', 1), ('slurred', 1), ('norway.', 1), ('london--quite', 1), ('sit.', 1), ('brightly.', 1), ('vile,', 1), ('tobin,', 1), ('dust--and', 1), ('penalty', 1), ('bootlaces.', 1), ('aberration', 1), ('burglars.', 1), ('moaned', 1), ('criminal?', 1), ('reseating', 1), ('plaid', 1), ('madman.', 1), ('frill', 1), ('leader,', 1), ('"\'"only', 1), ('plumage', 1), ('desperately,', 1), ('razors--had', 1), ('positions.', 1), ('sprint', 1), ('bijou', 1), ('metal-headed', 1), ("trevor's", 1), ('exalted?"', 1), ('zenith', 1), ('fordingbridge', 1), ('midlands', 1), ('dais', 1), ("southerton's", 1), ('full-sailed', 1), ('liberties,', 1), ('beggarman,', 1), ('jem;', 1), ('zigzag,', 1), ('all!"', 1), ('"forgive', 1), ('affairs,', 1), ('soames."', 1), ('plunging', 1), ('kid', 1), ('pro', 1), ('vision.', 1), ('background,', 1), ('stamp', 1), ('wonderfully!"', 1), ('milliner,', 1), ('detail,', 1), ('wakefulness.', 1), ('twopence', 1), ('five-forty.', 1), ('now--probably', 1), ('brassy', 1), ('womanhood', 1), ('detection,', 1), ('expenses.', 1), ('feed', 1), ('park."', 1), ('hungry', 1), ('"yesterday', 1), ('vision,', 1), ('writing,"', 1), ('walsham', 1), ('long--not', 1), ('few,', 1), ('melted', 1), ('burns', 1), ('poorly', 1), ('recesses', 1), ('admittance.', 1), ("away'", 1), ('cabinet?"', 1), ('lachine.', 1), ('applies', 1), ('highest,', 1), ('cap--it', 1), ('sideboard."', 1), ('hieroglyphics:', 1), ('diamond,', 1), ('times--three', 1), ('dabbler', 1), ('forever!"', 1), ('elri.', 1), ('musician."', 1), ('hairy', 1), ('discourage', 1), ('drags', 1), ('cut-and-dried', 1), ('thereof;', 1), ('headgear', 1), ('pirates', 1), ('whiz', 1), ('nostrils,', 1), ('circumlocution', 1), ('brandy-bottle!', 1), ('felt.', 1), ('prevent?', 1), ('"move', 1), ('disentangled', 1), ("'we'll", 1), ('feat?', 1), ('pleading', 1), ('stay,', 1), ('furniture.', 1), ('1894.', 1), ('slatternly', 1), ('references', 1), ('tibet,', 1), ('muffler.', 1), ('endured', 1), ('country-town', 1), ('tackled', 1), ('handkerchiefs', 1), ("'mysterious", 1), ('tickets."', 1), ('astir,', 1), ('condensing', 1), ('overtopped', 1), ('fatally', 1), ("bankers'", 1), ('pannikin', 1), ('ruddy-tinted', 1), ('dim,', 1), ('outhouse,', 1), ('wander."', 1), ('demanded', 1), ('topics.', 1), ('goading', 1), ('"send', 1), ('"none,', 1), ('riddle', 1), ('attained.', 1), ('eclipses', 1), ('groping', 1), ('fulfilment,', 1), ("mere.'", 1), ('watson]', 1), ('presumption,', 1), ('overwork', 1), ('belly,', 1), ("'where", 1), ('test.', 1), ('calcutta,', 1), ("'value,'", 1), ('elbow,', 1), ('thigh-deep', 1), ('introduction,', 1), ('slide', 1), ('travellers.', 1), ('ministers--that', 1), ('shirt-front', 1), ('businesslike', 1), ('good-night;', 1), ('inflamed', 1), ('perfectly,', 1), ('marrow,', 1), ('ancestor.', 1), ('gravity."', 1), ('impressive', 1), ('inventing', 1), ('devices', 1), ('highly,"', 1), ('coolly', 1), ('income,"', 1), ('adams."', 1), ('insist.', 1), ("'arms:", 1), ("autumn.'", 1), ('unjust', 1), ('problem."', 1), ('welfare', 1), ('laurel-clumped', 1), ('police-station?"', 1), ('edged', 1), ('imbecility!"', 1), ('clanging.', 1), ('respectful', 1), ('fear."', 1), ("pietro's", 1), ("say.'", 1), ('sorcerer!', 1), ('"bad!', 1), ('emergency', 1), ('mannerism', 1), ('embodiment', 1), ('legend,', 1), ('nickel-plated', 1), ('sentence."', 1), ('outrageous,', 1), ('good-humouredly.', 1), ('knew."', 1), ('equipped', 1), ("mawson's!'", 1), ('stretches', 1), ('nearer."', 1), ('blanche', 1), ('street--and--"', 1), ('co.', 1), ('well-established', 1), ('thy', 1), ('breeches', 1), ('moped', 1), ('fiasco', 1), ('distinctly."', 1), ('dim-lit', 1), ("'seeing", 1), ('harris,', 1), ('heeled', 1), ('deadly.', 1), ('footholds', 1), ("cottage.'", 1), ('4700', 1), ('half-sovereign.', 1), ('chevron', 1), ('courtly', 1), ('refused,', 1), ('hiding."', 1), ('smoke-darkened', 1), ('solemnly.', 1), ('ask."', 1), ('superintendent', 1), ('undertaking."', 1), ('heart--a', 1), ('print,', 1), ('breathlessness,', 1), ('shrubbery', 1), ('"snake-catcher', 1), ('decanter.', 1), ('atkinson', 1), ('fidget', 1), ('jewel-box.', 1), ('artillery.', 1), ('wish--"', 1), ('sad-faced', 1), ('blood-stain,', 1), ('already,"', 1), ('use;', 1), ('"hopkins', 1), ('acrid', 1), ("saviour's,", 1), ('authoritative', 1), ('adjoining', 1), ('bentinck', 1), ("queen's", 1), ('juryman:', 1), ('talking."', 1), ('cracksman,', 1), ('west,"', 1), ('energetic.', 1), ('dawson!"', 1), ('coiners', 1), ('despatch-box,', 1), ('damp,', 1), ('jezail', 1), ('outline,', 1), ('wigwams', 1), ('doctor--my', 1), ('reluctance', 1), ('dancing-men', 1), ('exact,', 1), ('chart-like', 1), ('white-bearded', 1), ('wear.', 1), ('chemistry.', 1), ('lordship.', 1), ('appeared--since', 1), ("simon.'", 1), ('swamp', 1), ('freemasonry?"', 1), ('continually,', 1), ('band--nothing', 1), ('atlanta', 1), ('dissipation', 1), ('shopping', 1), ('observer,', 1), ('rays', 1), ('instinct;', 1), ('good-humoured', 1), ('theft,', 1), ('half-crown', 1), ('chicago,', 1), ('raftered', 1), ('fellow-countrywoman', 1), ('network', 1), ('circle."', 1), ('upper-attendant', 1), ('mad--insane."', 1), ('balls', 1), ('chase,"', 1), ('plastered', 1), ('iris.', 1), ('suez', 1), ('spoil-sport.', 1), ('sinned,', 1), ('definite.', 1), ("junction,'", 1), ('henry--indeed', 1), ('student,', 1), ('highly?"', 1), ('peeling', 1), ('arrives', 1), ('marriage--a', 1), ('tariff', 1), ("luke's,", 1), ('holly', 1), ('eighty--cram', 1), ('abide', 1), ('light--"which', 1), ('coronet,"', 1), ('crutch,', 1), ('quietly;', 1), ('loft?"', 1), ('course,"', 1), ('door-keeper', 1), ('truncated', 1), ('keen-faced', 1), ('cock,', 1), ('print,"', 1), ('departments.', 1), ('phelps,"', 1), ('l500."\'', 1), ('negotiated.', 1), ('sex', 1), ('built."', 1), ('belgrade,', 1), ('result,', 1), ('unseat', 1), ('seeming', 1), ('destined,', 1), ("country-house.'", 1), ('seething', 1), ("instant,'", 1), ('reticence', 1), ('pioneers.', 1), ('saunders."', 1), ('trackers', 1), ('peered,', 1), ('types!', 1), ('foresight.', 1), ('four-wheeled', 1), ('expected."', 1), ('antiquarian,', 1), ('directness', 1), ('dagger,', 1), ('stevedore', 1), ('gentlemen!', 1), ("fish's", 1), ('unique."', 1), ('from,', 1), ('sepulchre?', 1), ('sound?', 1), ('age-blackened', 1), ('unemployed.', 1), ('"hunter', 1), ('voyages', 1), ('watson--running', 1), ('chimerical', 1), ('many.', 1), ('listeners.', 1), ('"\'"i\'m', 1), ('tie,', 1), ('copied?"', 1), ("year!'", 1), ('reposed', 1), ("ritual.'", 1), ('ownership', 1), ('effie,"', 1), ('pyland."', 1), ('steadfast', 1), ('prodigiously', 1), ('wit.', 1), ('prison?"', 1), ('none--not', 1), ('comforts', 1), ('picture-book', 1), ('yellow,', 1), ("hesitate,'", 1), ('ostler', 1), ('individuality.', 1), ('ship?"', 1), ('occupied,"', 1), ('rug.', 1), ('malplaquet', 1), ('here--ah,', 1), ('engaged,"', 1), ("woman's,", 1), ('harsh,', 1), ('supper."', 1), ('resumed.', 1), ('faster.', 1), ('let.', 1), ('boasting', 1), ('landowner,', 1), ('claim.', 1), ('ronald,', 1), ('arrow', 1), ('laurel-bushes', 1), ('wimpole', 1), ('meant."', 1), ('restlessly', 1), ('anticipated', 1), ('risen,', 1), ('drugget?"', 1), ('black-board', 1), ('doctor--as', 1), ('disheartened.', 1), ('dirt', 1), ('bottles', 1), ('height.', 1), ('souls,', 1), ('roysterers,', 1), ('moriarty."', 1), ('o\'clock?"', 1), ('will,"', 1), ('coffee-pot', 1), ("valet's", 1), ('ramifications', 1), ('sidelights', 1), ("result?'", 1), ('watch-chain."', 1), ('uninhabited;', 1), ('blazes!"', 1), ('primness', 1), ('pioneer,', 1), ('bowl-shaped', 1), ('gaol."', 1), ('guest.', 1), ('uttered,', 1), ('manage."', 1), ('bawl', 1), ("time,'", 1), ('thoughtful,', 1), ('realistic', 1), ('gored', 1), ('furlongs,', 1), ('stage--ha!', 1), ('presentment', 1), ('ready,"', 1), ('"\'wonderful!\'', 1), ('"plumb', 1), ('"\'never,\'', 1), ('failed;', 1), ('"no--or,', 1), ("open.'", 1), ('climb.', 1), ('interesting."', 1), ('beautifully,"', 1), ('persistent', 1), ("heels.'", 1), ('noteworthy', 1), ('earl,', 1), ('studied,', 1), ('burglary.', 1), ('ass', 1), ('culpable', 1), ('baulk', 1), ('antecedents.', 1), ('triumphant.', 1), ('luggage,', 1), ('humorous', 1), ('nip', 1), ('aldershot.', 1), ('tooth-brush', 1), ('beryl!"', 1), ('rachel--who', 1), ("arm's", 1), ('stowed', 1), ('prejudices,', 1), ('objects.', 1), ('"\'because', 1), ('pillar', 1), ('sensation,', 1), ('dejected;', 1), ('117th)', 1), ('letters."', 1), ('tea-trade,', 1), ('mornings.', 1), ('unfurnished,', 1), ("soames'", 1), ('decay', 1), ('intends', 1), ('whim', 1), ('indentation,', 1), ('shivering."', 1), ('manifold', 1), ('"phosphorus,"', 1), ('wiry,', 1), ('rebuff,', 1), ('scraps.', 1), ('routine.', 1), ('realism', 1), ('horrors', 1), ('butterfly-net.', 1), ('solved--what', 1), ('trooped', 1), ("pity's", 1), ('cheating', 1), ('doubtless,', 1), ('ungovernable,', 1), ('sydenham.', 1), ('extreme.', 1), ('well-cut', 1), ("chose?'", 1), ("hair?'", 1), ('cleanliness', 1), ('rests.', 1), ('insane', 1), ('protruded,', 1), ('winner', 1), ('lessen', 1), ("appeared.'", 1), ('"\'did', 1), ('iron.', 1), ('good-morning!"', 1), ('exaggerate.', 1), ('man--no', 1), ('stalwart', 1), ('hook-nosed', 1), ('"exactly', 1), ('supper.', 1), ('pegs.', 1), ('multiplex', 1), ('choose.', 1), ('insult."', 1), ('inaccessible,', 1), ('forrester,', 1), ('slugs.', 1), ('pin-prick,', 1), ('coachman.', 1), ('sharpened.', 1), ('whereabouts."', 1), ('flanked', 1), ("'neither", 1), ('ours."', 1), ('fondly', 1), ('naples,', 1), ('official-looking', 1), ('palimpsest,', 1), ('congratulatory', 1), ('enough;', 1), ('instrument--it', 1), ('repetitions', 1), ('stature', 1), ('person;', 1), ('theorem,', 1), ("cobbler's", 1), ('pastime;', 1), ('"please', 1), ('window-sill.', 1), ('sway', 1), ('towel', 1), ('caps', 1), ('"\'by', 1), ('residue', 1), ('long--probably', 1), ('trifling,', 1), ('fencing', 1), ('instincts,', 1), ('planting,', 1), ('abomination.', 1), ('cigar-end', 1), ('gargling', 1), ('original.', 1), ('incessantly,', 1), ('disheartened,', 1), ('silhouettes', 1), ('abusive', 1), ('any,', 1), ('roughs.', 1), ('twelve."', 1), ('imaginings,', 1), ('blue-veined', 1), ('valid.', 1), ('blushed', 1), ('ferrule', 1), ('refined-looking', 1), ('good-day', 1), ('quick-witted', 1), ('providential', 1), ('wakened', 1), ("agatha--that's", 1), ('attractive', 1), ('grati--most', 1), ('cells,', 1), ('compartments--he', 1), ('boots!', 1), ('years;', 1), ('pencil-case,', 1), ('lover;', 1), ('essay', 1), ('"farewell,', 1), ('"consider', 1), ('alternating', 1), ('rich?"', 1), ('responsive', 1), ('cashbox,', 1), ('frayed,', 1), ('barren,', 1), ('brotherhood', 1), ('vulgar,', 1), ('sailor,', 1), ('on?', 1), ('diplomas', 1), ('gazetteer."', 1), ('news-bill', 1), ('bank."', 1), ('would--i', 1), ('persecuting', 1), ('sail', 1), ('unites', 1), ('snarl.', 1), ('worms?', 1), ('blackish', 1), ('lair', 1), ('12s.\'"', 1), ('despair;', 1), ('dear?"', 1), ('"several', 1), ('load,', 1), ('dinner?"', 1), ('lesions', 1), ('cobras.', 1), ('farnham;', 1), ('sunburnt', 1), ('raging', 1), ('go-between', 1), ('butterfly,', 1), ('savoury', 1), ('binding', 1), ('abernetty', 1), ('crest,', 1), ('perceptibly', 1), ('moments.', 1), ('relevant', 1), ('mary?', 1), ('fathom.', 1), ('sideboard.', 1), ('presented,', 1), ('brindled', 1), ("wits.'", 1), ('listen,', 1), ('fearless', 1), ('expostulating', 1), ('roman', 1), ('completed.', 1), ('slumbered.', 1), ('astuteness', 1), ('overlap,', 1), ('tracks?"', 1), ("you--jem's", 1), ('"\'perhaps', 1), ("'get", 1), ('lisp.', 1), ('liberties.', 1), ("'84", 1), ("minute's", 1), ('bones', 1), ('did--some', 1), ('spaniel', 1), ('whine.', 1), ('weaker."', 1), ('destroy.', 1), ('levy', 1), ('card?"', 1), ('inside."', 1), ("late!'", 1), ('honours.', 1), ("pheasant's", 1), ('block.', 1), ('lazily,', 1), ('lecturing', 1), ('residue?"', 1), ('brewing', 1), ('failure.', 1), ('whip.', 1), ('inquire.', 1), ('frowning', 1), ('presumed', 1), ('receiver', 1), ('kind;', 1), ('defects--if,', 1), ('bohemia,"', 1), ("woodley's", 1), ('faintest', 1), ('fraser', 1), ('investigating."', 1), ('hunting-crop.', 1), ('forgetfulness;', 1), ('exactness', 1), ('kicks', 1), ('mining.', 1), ('negligent', 1), ('dulong.', 1), ("comes,'", 1), ('message:', 1), ('parishes', 1), ('intellects', 1), ('practice?"', 1), ('martyrdom', 1), ('seasons', 1), ('giddy', 1), ('explain?"', 1), ('never--"', 1), ('coronet?', 1), ('occipital', 1), ('niece;', 1), ('"texas,', 1), ('knight', 1), ('guardians', 1), ('never!"', 1), ('pillared', 1), ('cassock', 1), ('rule,"', 1), ('tight,', 1), ('tracts,', 1), ('accomplishments,', 1), ('half-filled', 1), ('common-place', 1), ('sorely.', 1), ('earnestly,', 1), ('rob', 1), ('californian', 1), ('cross-legged,', 1), ('transaction', 1), ('victor.', 1), ('half-dragged', 1), ('creditors', 1), ('trapdoor', 1), ('_hotspur_,', 1), ('unduly', 1), ('"\'apoplexy.', 1), ('herd', 1), ('small?"', 1), ('panic.', 1), ('rica,', 1), ('alliance,', 1), ('loan,', 1), ('geese?"', 1), ('identical', 1), ('rubber.', 1), ('troubles--some', 1), ('acid,', 1), ('reproach?"', 1), ('remorseless', 1), ("mustn't", 1), ('night!"', 1), ('cock,"', 1), ('"finally,', 1), ('look,"', 1), ('sure!"', 1), ('proofs.', 1), ('cork.', 1), ('dearly.', 1), ('countryman', 1), ('agonized', 1), ("singleford's", 1), ('waiting-maid.', 1), ('mister--a', 1), ('jurymen', 1), ('bruce', 1), ('steady,', 1), ('minister?"', 1), ("coram's", 1), ('perpetrated', 1), ('adams,', 1), ('"fortune', 1), ('determines', 1), ('loneliness,', 1), ('browns', 1), ('fac-simile', 1), ('angel--was', 1), ('deserts,', 1), ('ruined."', 1), ('planking,', 1), ('driver."', 1), ('bedside.', 1), ('exposure.', 1), ('establishment--boys,', 1), ('noised', 1), ('fifth.', 1), ('keenness,"', 1), ('gushes,', 1), ('bullet-pocks,', 1), ('courtyard', 1), ('illusion."', 1), ('bodily', 1), ('emaciated', 1), ('genuine.', 1), ('move?"', 1), ('reluctant', 1), ('a-lying', 1), ("host's", 1), ("'maybe'", 1), ('overpower', 1), ('plumbers', 1), ('reclaim', 1), ('vitality', 1), ('creature."', 1), ('shipwrecked', 1), ('verrons,"', 1), ('nature."', 1), ("'colonel", 1), ('preoccupations', 1), ('aloft', 1), ('mouse', 1), ("goin'", 1), ('unworthy', 1), ('overdid', 1), ('records,', 1), ('cocksure,"', 1), ('license?"', 1), ('promise!"', 1), ('proprietor.', 1), ('compliments', 1), ('fraser.', 1), ('lever,', 1), ('casks,', 1), ('ranks', 1), ('flicking', 1), ('critical.', 1), ('mole', 1), ('"whichever', 1), ('reminded', 1), ('lancashire', 1), ('marylebone', 1), ('met."', 1), ('scribble', 1), ('unclasped', 1), ('prices.', 1), ('note-paper.', 1), ('view-halloa', 1), ('murder!"', 1), ('ethereal', 1), ('.ere', 1), ('cook', 1), ('knew?"', 1), ('door-way', 1), ('considerate', 1), ('uncle:--i', 1), ('1870', 1), ('married!"', 1), ('manageress', 1), ('discussing', 1), ('slums', 1), ('emerged,', 1), ('dominate', 1), ('brain-attic', 1), ("fastened?'", 1), ('arrows,', 1), ("victoria.'", 1), ('charlington,', 1), ('scraped,', 1), ('boarding-school.', 1), ('sailors.', 1), ('clandestine', 1), ('intact.', 1), ('mechanic.', 1), ('connection,', 1), ('code', 1), ('imprisonment?"', 1), ('position;', 1), ('raining?"', 1), ('depths.', 1), ('outbreaks', 1), ('"\'but,\'', 1), ('telegram?"', 1), ('lot?"', 1), ('almoner', 1), ('glasses--who', 1), ('me--i', 1), ('rareness', 1), ('seek."', 1), ('closed?"', 1), ("john's", 1), ('tethered', 1), ('eight,', 1), ('astray.', 1), ('sheltered', 1), ('empire', 1), ('muttering.', 1), ('shard', 1), ('saddle', 1), ('actor,', 1), ('study--it', 1), ("tangey's", 1), ('rescued', 1), ('"ample."', 1), ('cycling', 1), ('fist.', 1), ('"\'about', 1), ('orchestra', 1), ('chaps', 1), ('watchful', 1), ('socket', 1), ('played,', 1), ('face-coverings,', 1), ('bhurtee', 1), ('terai', 1), ('lowliest', 1), ('basket;', 1), ('soil--simple,', 1), ('regurgitation', 1), ('athens', 1), ('audacious!', 1), ('cautious,', 1), ('removed--the', 1), ('two-litre', 1), ('caution,', 1), ('offer."', 1), ('events?', 1), ('murdered.', 1), ('production,"', 1), ('bulge', 1), ('business!', 1), ("'r.'", 1), ('dunlop.', 1), ('transition', 1), ('confidentially?"', 1), ('students."', 1), ("blessington's,", 1), ('attention--which', 1), ('whiskers.', 1), ('episode--in', 1), ('farther."', 1), ("'telegram", 1), ('with."', 1), ('rotterdam."', 1), ('water-plants', 1), ('encyclopaedias,', 1), ('creaming,', 1), ('breathlessly.', 1), ('clasp', 1), ('married."', 1), ('she--the', 1), ('distractions', 1), ('adorned', 1), ('autumn.', 1), ('postmark,', 1), ("evening's", 1), ('complication.', 1), ('touches', 1), ('earns', 1), ('barrymore!', 1), ('neligan?"', 1), ('documents.', 1), ('wineglasses?"', 1), ('volley.', 1), ('theatrical', 1), ('peeress.\'"', 1), ('observant,', 1), ("coxon's", 1), ('forwards', 1), ('walsingham', 1), ('pipes', 1), ('grenoble,', 1), ('craning', 1), ('congratulated', 1), ('wonder,"', 1), ('emphasize', 1), ('esq.,', 1), ('tramp!', 1), ('heave', 1), ('native-born', 1), ('"plural?"', 1), ('entitled.', 1), ('sea-chest.', 1), ('gravesend.', 1), ('insane.', 1), ('undoing.', 1), ('beings', 1), ('suspects', 1), ('worse,', 1), ('hypotheses', 1), ('investigated."', 1), ('embarking', 1), ("m's", 1), ('late?"', 1), ('heavy-faced,', 1), ('love-gages', 1), ('"impossible,', 1), ('game-keeper.', 1), ('"\'arthur!\'', 1), ('spirits,', 1), ('water-course', 1), ('beard!"', 1), ("k.';", 1), ("fair,'", 1), ('gent', 1), ('cigar,"', 1), ('elbowed', 1), ('burrows', 1), ('splotch', 1), ('staff-commander', 1), ('counterfoils.', 1), ('stupefying', 1), ('injustice,', 1), ('opinion,"', 1), ('moods.', 1), ('mysterious."', 1), ('stoner.', 1), ('reveals', 1), ('holmes--simply', 1), ('overrate', 1), ('kramm,', 1), ('fraud.', 1), ('execution,', 1), ('trifles.', 1), ('unburned', 1), ('ritual."', 1), ('funny,', 1), ('odious,', 1), ("misses'", 1), ('pet.', 1), ('starter."', 1), ('squeezed', 1), ('expanded.', 1), ('roasting', 1), ('dribbling,', 1), ('heart!"', 1), ('sculptor', 1), ('german-speaking', 1), ('caricature', 1), ('employers,', 1), ('casts.', 1), ('trades', 1), ('irrelevant.', 1), ('gang,"', 1), ('said],', 1), ('uncurtained', 1), ('caress.', 1), ('miser', 1), ('deed."', 1), ('bristle', 1), ('motherly', 1), ('blank.', 1), ("england.'", 1), ('indiscreet,', 1), ('sandeford;', 1), ('emptied.', 1), ('bird,"', 1), ('fails,', 1), ('mellow', 1), ('stake?"', 1), ('concluded,', 1), ('roughly,', 1), ('trial,"', 1), ('ship--the', 1), ('beckenham,', 1), ('depression,', 1), ('jumpy', 1), ('november,', 1), ('comrade,', 1), ('wanting."', 1), ('anthony', 1), ('kindness.', 1), ('employé,', 1), ('incited', 1), ('patriotic', 1), ('chastened', 1), ('"silver', 1), ('verbs.', 1), ('professor."', 1), ('moor-gate."', 1), ('innings', 1), ('amethyst', 1), ('consumption.', 1), ("obligations.'", 1), ('short!"', 1), ('"time."', 1), ('juncture."', 1), ('broken-backed', 1), ('open;', 1), ('"laburnum', 1), ('waves', 1), ('names,', 1), ('headstrong', 1), ('explain,"', 1), ('endeavors', 1), ('jones?"', 1), ('crowding', 1), ('characteristics.', 1), ('permission,"', 1), ('cabul.', 1), ('accustomed,', 1), ('away--oh,', 1), ('one-half', 1), ('posterior', 1), ('complain."', 1), ('arson.', 1), ('announcement.', 1), ('gum', 1), ('thumb-mark,', 1), ('neutral', 1), ('gold,"', 1), ('fetid', 1), ('"7th.', 1), ('lodger', 1), ('free-trade', 1), ('frost,', 1), ('wilder----"', 1), ('conversant', 1), ('patches,', 1), ('cashier', 1), ('practice--"', 1), ('pass?"', 1), ('gorse.', 1), ('bakers', 1), ('half-round,', 1), ('mother?"', 1), ('colds', 1), ('sides.', 1), ('bail', 1), ('strained.', 1), ('grow.', 1), ('botanical', 1), ('seven-shilling', 1), ('cross-examination,', 1), ('up--"', 1), ('"my,', 1), ('courts."', 1), ("'82", 1), ('window;', 1), ('owner?"', 1), ('first-hand', 1), ('farnham."', 1), ('lintel', 1), ('dead--the', 1), ('wag', 1), ('masterpiece', 1), ('reeking', 1), ('lad?"', 1), ('gentry', 1), ('crime?"', 1), ('acton\'s."', 1), ('colour?"', 1), ('assured,', 1), ('boys.', 1), ('sick-room,', 1), ("common,'", 1), ('considerably.', 1), ('away.\'"', 1), ('draw."', 1), ('stony', 1), ('glorify', 1), ('mould', 1), ('tailless,', 1), ('chinchilla', 1), ('loved?"', 1), ('telegraphic', 1), ("game's", 1), ('windibank--that', 1), ('lodger,', 1), ('shout,', 1), ('odd.', 1), ('triumph,', 1), ('daubensee,', 1), ('circumspect,', 1), ('berkshire.', 1), ('green.', 1), ("'come.'", 1), ('captive', 1), ('dockyard,', 1), ('squandered', 1), ('compete."', 1), ('latimer."', 1), ('lose!"', 1), ('daintiest', 1), ('buckles.', 1), ('hut."', 1), ('norman', 1), ('accomplish.', 1), ('powder-blackening', 1), ('sneaked', 1), ('offended.', 1), ("received.'", 1), ('plausibly', 1), ('little."', 1), ('competition', 1), ('tracks,', 1), ('adelaide,', 1), ('tribe--and', 1), ('crumble', 1), ('glorious', 1), ('upturned,', 1), ('cruelty,', 1), ('powder.', 1), ('ebbs', 1), ('travelling-cloak', 1), ('alarm!"', 1), ('mary!', 1), ('accidents', 1), ('"running', 1), ('detained."', 1), ('monica', 1), ('good-by;', 1), ("usual,'", 1), ("'sever,'", 1), ('ashore.', 1), ('scissors-grinder,', 1), ('soft.', 1), ('queen?', 1), ('brows.', 1), ('summonses', 1), ('ring,"', 1), ('flames.', 1), ('amnesty', 1), ('bicyclist', 1), ('irksome', 1), ('blunders', 1), ('major-general', 1), ('have!--a', 1), ('again--just', 1), ('"ballarat."', 1), ('shirt-cuff.', 1), ('smoke,"', 1), ('vicinity', 1), ('nerve.', 1), ('not!', 1), ('bribe', 1), ('discs', 1), ('resemblance.', 1), ('patriarch', 1), ('father!', 1), ('pocket;', 1), ('know?', 1), ('attempt.', 1), ('popped', 1), ('"interesting,', 1), ('four-year-old', 1), ('unutterable', 1), ('qualities;', 1), ("soames's", 1), ('frieze', 1), ('today."', 1), ('firmness.', 1), ('formalities,', 1), ('heard?', 1), ('death-wound.', 1), ('imparted', 1), ('rabble', 1), ('140', 1), ('terrorize', 1), ('clothing,', 1), ('gallows,', 1), ('jesting', 1), ('221', 1), ('reverently,', 1), ('sketches.', 1), ('formed.', 1), ('backhander,', 1), ('arguments,', 1), ('facts--"', 1), ('is--to', 1), ('rightly,', 1), ('broken-hearted.', 1), ('outweigh', 1), ('rock--the', 1), ('chips,', 1), ('ourselves."', 1), ('alley."', 1), ('passion,', 1), ('draghound', 1), ('puny', 1), ('death--well,', 1), ('neatest', 1), ('called,"', 1), ('mentally.', 1), ('noose', 1), ('root', 1), ("life,'", 1), ('boarding-house', 1), ('emaciation,', 1), ('alibi', 1), ('items', 1), ('fashioned', 1), ('intake.', 1), ('professionals,', 1), ('cordially', 1), ('knuckles.', 1), ('humdrum', 1), ('spongy', 1), ("hatherley's", 1), ('exactly.', 1), ('armed,"', 1), ('temper,', 1), ('craniology', 1), ('choleric.', 1), ('murder--a', 1), ('"\'under', 1), ('"12th.', 1), ('knee-caps,', 1), ('\'elrige\'s\'?"', 1), ('nihilist', 1), ('coffin', 1), ('defence.', 1), ('effusive.', 1), ('suggestive--in', 1), ("anything.'", 1), ('share,"', 1), ('exhilaration', 1), ('gag,', 1), ("hunter's", 1), ('changing,', 1), ("register'", 1), ('frame.', 1), ('fore-yard', 1), ('acknowledge,', 1), ('kindest', 1), ('biscuits.', 1), ('path."', 1), ('extraordinary?', 1), ('kent', 1), ('street?', 1), ('plain?"', 1), ('roughening', 1), ('coat-of-arms', 1), ('alec,', 1), ('communicating', 1), ('prescribe', 1), ('juan,', 1), ('mountains,', 1), ('selections."', 1), ('file,', 1), ('observes.', 1), ("ne'er-do-well", 1), ("ayrshires?'", 1), ('assassin.', 1), ('often?"', 1), ('profited', 1), ('"\'"well,', 1), ('pinpoint', 1), ('garrulous', 1), ('creation.', 1), ('myrtles,', 1), ("station.'", 1), ('"\'"you\'re', 1), ('chamber."', 1), ("k.,'", 1), ('vastness,', 1), ('newhaven."', 1), ('somomy', 1), ("afraid,'", 1), ('dinner-dress', 1), ('victoria.', 1), ('traversed', 1), ("'head-keeper", 1), ('admirers', 1), ('at!', 1), ('"\'"then', 1), ('husband;', 1), ('smash', 1), ('still."', 1), ('horrible.', 1), ('couldn\'t!"', 1), ('learn."', 1), ('whishing', 1), ('indeed,"', 1), ('gratitude.', 1), ('servant-maids--joined', 1), ('overlooking', 1), ('shipwreck', 1), ('steely', 1), ('injustice', 1), ('penniless', 1), ('assistance?"', 1), ('resort', 1), ('purpose?"', 1), ('freer', 1), ('hinges,', 1), ('darkness--such', 1), ('pane', 1), ("away.'", 1), ('reopening', 1), ('picker', 1), ('grate,', 1), ('merchant', 1), ('trifle."', 1), ('xxx', 1), ('panting,', 1), ('discriminate.', 1), ('scandinavia."', 1), ('literal', 1), ('asperity', 1), ('feudal', 1), ('asunder.', 1), ('barricaded', 1), ('terror.', 1), ('inquiry?"', 1), ('behaviour.', 1), ('princetown."', 1), ('assaulted?"', 1), ('splendour', 1), ('resentment,', 1), ('government.', 1), ('tresses.', 1), ('tradesmen,', 1), ('quarter?"', 1), ('starts', 1), ('reabsorbed', 1), ('retreated', 1), ("character?'", 1), ('wife;', 1), ('fungi', 1), ('trunk.', 1), ('operation.', 1), ('gray-haired', 1), ("'would", 1), ('1882,', 1), ('spaulding.', 1), ('judging."', 1), ("causes.'", 1), ('knows?', 1), ('estranged,', 1), ('irrelevant."', 1), ('stripes."', 1), ('walking-clothes,', 1), ('fresh-complexioned', 1), ("arthur,'", 1), ('unexplained.', 1), ('constructed,', 1), ('paris?', 1), ('jealousy,', 1), ('weariness', 1), ('ten-mile', 1), ('"beg', 1), ('inches--from', 1), ('circulated', 1), ('identical.', 1), ('pin,', 1), ('common-looking', 1), ("hayes's", 1), ('others?"', 1), ('legends', 1), ('breakfast-time', 1), ('dovercourt.', 1), ('lean,', 1), ('hair-ends,', 1), ('will;', 1), ('pined', 1), ('transmit', 1), ('statements,', 1), ('frankest', 1), ("beeches.'", 1), ('"\'made', 1), ('loading', 1), ("thief!'", 1), ('impassable', 1), ('neckcloth.', 1), ("'suicide.'", 1), ('relieved,', 1), ('lyon', 1), ('incorrigible,', 1), ('intimately.', 1), ('reservations,', 1), ('day!"', 1), ('flaw?', 1), ('impound', 1), ('allow,', 1), ("henry--don't", 1), ('paragon', 1), ('16a,', 1), ('confessed.', 1), ('diphtheria', 1), ('edison', 1), ('losses', 1), ('sly-looking,', 1), ('numb', 1), ('siberia,', 1), ('obey.', 1), ('happy."', 1), ('correspondents."', 1), ('attachment', 1), ('minimum', 1), ("fast?'", 1), ('hidden,', 1), ('tissue', 1), ('group.', 1), ('supposition.', 1), ('rejected', 1), ('incised', 1), ('dibbs,', 1), ('number--very', 1), ('restoration', 1), ('astounding', 1), ('individual,', 1), ('virgin', 1), ('coal-scuttle,', 1), ('homeward,', 1), ('squat', 1), ('peaty,', 1), ('oscar', 1), ('name)', 1), ('backward.', 1), ('"impossible!"', 1), ('comet', 1), ('besmirched', 1), ("palmer's,", 1), ('subsided', 1), ('breech-lock.', 1), ('gate--now', 1), ('r,', 1), ('frou-frou', 1), ('desborough!', 1), ('plates', 1), ('emperor.', 1), ('sound!"', 1), ('ardent,', 1), ('advises.', 1), ('lyons--it', 1), ('to--none,', 1), ('teetotaler,', 1), ('crockery', 1), ('interrogate.', 1), ("'wilful", 1), ('no?', 1), ("lists?'", 1), ('gifts--for', 1), ('vapour', 1), ('mat', 1), ('burglars,', 1), ('engrossed', 1), ('firearms', 1), ('fastened?"', 1), ("importance,'", 1), ('bottle.', 1), ('incessantly', 1), ('snow-storm.', 1), ('woman--oh,', 1), ('biscuits,', 1), ('sick.', 1), ('failure', 1), ('exaggerating', 1), ('hansom.', 1), ('bride', 1), ('florida.', 1), ('girt', 1), ('petrarch,', 1), ('views,', 1), ('case--that', 1), ('catastrophe?', 1), ('wringing', 1), ('growth', 1), ('paper-littered', 1), ('breathless,', 1), ('enlighten', 1), ('conflicting', 1), ('effected,', 1), ('finder', 1), ('correct?"', 1), ('long-suffering.', 1), ('fat,', 1), ('dreadfully."', 1), ('monoliths', 1), ('taken?', 1), ('vainly', 1), ('pocketbook--an', 1), ('bathed', 1), ('shrieked.', 1), ('extricated', 1), ('fairbank', 1), ('boxer,', 1), ('grating.', 1), ("question?'", 1), ('bent.', 1), ('mail', 1), ('aghast', 1), ("pond?'", 1), ('portiere', 1), ('not?--that', 1), ('retrospection', 1), ('slate-coloured', 1), ("wood?'", 1), ('client?"', 1), ('silently,', 1), ('manor,', 1), ('rutted,', 1), ('"already,', 1), ('agreeable.', 1), ('7', 1), ('consternation', 1), ('emigrated', 1), ('sombre--a', 1), ('feel,', 1), ("house?'", 1), ('conclusion?', 1), ('demoniacal', 1), ('strange!"', 1), ("avail,'", 1), ('"without,', 1), ('call,', 1), ('outrage.', 1), ('fresh?"', 1), ('crewe.', 1), ('uplands', 1), ("to-morrow?'", 1), ('attaches', 1), ('paragraph,', 1), ('imposing', 1), ('brokers,', 1), ('success."', 1), ('forenoon,', 1), ('self-respect,"', 1), ('smoking-room.', 1), ('suggesting', 1), ('desk."', 1), ('macpherson,"', 1), ('four-thirty', 1), ('washing', 1), ('weapon,"', 1), ('briefly,', 1), ('all-comprehensive', 1), ('ran]', 1), ('terrace', 1), ('might."', 1), ('clustered', 1), ('elm.', 1), ('good-bye.', 1), ('conduit', 1), ('choke', 1), ('smarting', 1), ('words,"', 1), ('desires,', 1), ('defending', 1), ('outhouse--he', 1), ('wine.', 1), ('es.', 1), ('appearances', 1), ("hobbies,'", 1), ('families.', 1), ('mask.', 1), ('ecarte', 1), ('school--not', 1), ('consumptive', 1), ('ill-treatment', 1), ('wires.', 1), ('different--had', 1), ('harris?"', 1), ('self-respect,', 1), ('superiors.', 1), ('triple', 1), ('cyclopides.', 1), ('tether,', 1), ('opposed', 1), ('bridegroom),', 1), ('dinner?', 1), ('puzzling,', 1), ('amazing.', 1), ('grotesque.', 1), ('laddie.', 1), ('hawk-like', 1), ('dwell.', 1), ('benefit.', 1), ('ferns,', 1), ('prosper!', 1), ('fathers?"', 1), ('amyl,', 1), ('kate.', 1), ('reception', 1), ('shortcomings.', 1), ('temptation."', 1), ('wrong-doer.', 1), ('population', 1), ('sober,', 1), ('thresholds', 1), ('innocence."', 1), ('doorstep,', 1), ('florid-faced,', 1), ('eccentric,', 1), ('paled', 1), ('night-light', 1), ('countess,', 1), ('u.', 1), ('recount', 1), ('teacher.', 1), ('names."', 1), ('quicksand?', 1), ('mutton.', 1), ('scotch-woman.', 1), ('banish', 1), ('death--and', 1), ('deadlock.', 1), ('compensated', 1), ("'to'", 1), ('heavy-game', 1), ('realizing', 1), ("to-day's", 1), ('mole,', 1), ('book?"', 1), ('heavy-featured', 1), ('shaded', 1), ('verbal,', 1), ('woman!', 1), ('pocket-lens.', 1), ('measurements.', 1), ("'reason,'", 1), ('shining.', 1), ('slate-roofed,', 1), ('demure', 1), ("rien--l'oeuvre", 1), ('carlo,', 1), ('vitriol-throwing,', 1), ('infamy.', 1), ('instincts?', 1), ('leave-takers', 1), ('franchise', 1), ('challenged', 1), ('tailor.', 1), ('pair.', 1), ('substitution', 1), ('looming', 1), ('cheap."', 1), ('poorer,', 1), ('"tut!', 1), ('trod', 1), ('identify.', 1), ('marvellous.', 1), ('furrow', 1), ('rain."', 1), ('malay', 1), ('and--and--well,', 1), ('appearing', 1), ('tenner', 1), ('checkmate', 1), ("god,'", 1), ('mask?"', 1), ('absurd.', 1), ('"\'oct.', 1), ('fanciful."', 1), ('mecca,', 1), ('barometer,', 1), ("wardrobe.'", 1), ('self-restraint', 1), ('loaded,', 1), ('maintenance.', 1), ('irresolution', 1), ('florin.', 1), ('mawson\'s."', 1), ('leave."', 1), ('said--that', 1), ('action?"', 1), ('desk?"', 1), ('excuses,', 1), ('regulations', 1), ('superfluous', 1), ('norbury,', 1), ("george's", 1), ('pry', 1), ('sobs.', 1), ('steamship', 1), ('tottering', 1), ('sticks,', 1), ('woodlands.', 1), ('governor--how', 1), ('profess', 1), ('circumspect', 1), ('"no--except', 1), ('lucrative,', 1), ('sprained', 1), ('pipe,"', 1), ('sir--selden,', 1), ('neutralized', 1), ('examination,', 1), ('belle', 1), ('alive?', 1), ('misunderstanding', 1), ('surgeons.', 1), ('packet."', 1), ('pallet', 1), ('shores', 1), ('bounds', 1), ('employé', 1), ("january,'", 1), ('bruise,', 1), ("future.'", 1), ('slips.', 1), ('exercising', 1), ('elsie.', 1), ('explained,"', 1), ("her!'", 1), ('arguing.', 1), ("tut,'", 1), ('waterpipe', 1), ('heroic', 1), ('find?', 1), ('needed--by', 1), ('fabrication."', 1), ('journeyed', 1), ('cock-sure,', 1), ('tool-house', 1), ('sincere,', 1), ('ornament.', 1), ('goodwins', 1), ('body."', 1), ('witness-box.', 1), ('proclaims', 1), ('breeze', 1), ('snapping', 1), ('prickings', 1), ('colonies,', 1), ('mental,', 1), ('day--thursday,', 1), ('madame,', 1), ('whoa!"', 1), ('lascar,"', 1), ("marksman's", 1), ('pipe?', 1), ('cleanly', 1), ('unemotional.', 1), ('sherlock,"', 1), ('conflagration', 1), ('clear-cut,', 1), ('chagrined.', 1), ('cross-road', 1), ('admirable--but', 1), ('imaginary', 1), ('pullman', 1), ('left-handedness."', 1), ('vouching', 1), ('candle-power', 1), ('longest', 1), ('unheeded', 1), ('understand!"', 1), ('india.', 1), ('"\'you\'re', 1), ('incurring', 1), ('account."', 1), ('mixed,', 1), ("criminal's", 1), ('in,"', 1), ('cigar-case,', 1), ('tunnel.', 1), ('desmond,', 1), ('sally', 1), ('deed?', 1), ('idea,"', 1), ('memorandum-book', 1), ('hammersmith.', 1), ('eyes!"', 1), ('trustee--to', 1), ('five."', 1), ('logbooks,', 1), ('"\'such,', 1), ('severn,', 1), ('are--and', 1), ('adjusted.', 1), ('rural', 1), ('paul', 1), ("joker?'", 1), ('kent--lady', 1), ('comments.', 1), ("not--don't", 1), ("'we've", 1), ('marsham,', 1), ('complexion."', 1), ('wonderfully.', 1), ('strand', 1), ('friday.', 1), ('accompaniments', 1), ('dissatisfied', 1), ('rip', 1), ('bodes', 1), ('affairs;', 1), ('assistants,', 1), ('georgia."', 1), ('pedigree.', 1), ('thins', 1), ('opposite.', 1), ('wit', 1), ('vegetation--sad', 1), ('bust--the', 1), ('maddening,', 1), ('adder!"', 1), ('irregularity', 1), ('woking,', 1), ('registers', 1), ('assassin--an', 1), ('nonchalant', 1), ('apparelled,', 1), ('decrees', 1), ("ryder's", 1), ('sank,', 1), ('jack!"', 1), ('moods,', 1), ('offence,', 1), ('interruptions', 1), ('lives."', 1), ('sealskin--the', 1), ('brusquely', 1), ('burnwell.', 1), ('ramble', 1), ('addresses.', 1), ("'pon", 1), ('bachelor.', 1), ('guns', 1), ('grievance', 1), ('trifles."', 1), ('dresses.', 1), ('when--', 1), ('so--!"', 1), ('rotting', 1), ('"written', 1), ('market?', 1), ('adequate.', 1), ('defiant,', 1), ('attained?"', 1), ('threats.', 1), ('"show', 1), ('leg."', 1), ('telegram?', 1), ('daughter?"', 1), ('footmarks."', 1), ('train--quarter-past', 1), ('broadened,', 1), ('realize,', 1), ('seas."', 1), ('savagely.', 1), ('darling,', 1), ('limbs.', 1), ('magistrates', 1), ('creatures,', 1), ('plainest', 1), ('modern.', 1), ('claimed', 1), ("under,'", 1), ('cage.', 1), ('thief."', 1), ('ripple,', 1), ('bicycled', 1), ("leaving,'", 1), ('white-counterpaned', 1), ("date.'", 1), ('unofficial.', 1), ('travellers', 1), ('drunk;', 1), ('rents', 1), ('unfinished?"', 1), ('ex-confederate', 1), ('swelling,', 1), ('uncancelled', 1), ('agent!"', 1), ('kirwan--though', 1), ('family,"', 1), ('prepared,', 1), ('inconclusive', 1), ('inhabited?"', 1), ('bands,', 1), ('knocking.', 1), ('headache.', 1), ('employee,', 1), ('this--one', 1), ('prompt.', 1), ('outs', 1), ('shod', 1), ('nests,"', 1), ('chuckles.', 1), ("week.'", 1), ('contemplating', 1), ('repartee,', 1), ("alice's", 1), ('chemist', 1), ('currents', 1), ('broader,', 1), ('"breckinridge', 1), ('bell?', 1), ('pitch,', 1), ('practices', 1), ('lie?', 1), ('godno,', 1), ('marry,', 1), ("guide's", 1), ('hargreave,', 1), ('catchy', 1), ('devouring."', 1), ('pin', 1), ('power?', 1), ('evening!"', 1), ('half-raised', 1), ('talker', 1), ('sentences,', 1), ('animated.', 1), ('emigrant', 1), ('heidegger', 1), ("son's,", 1), ('him--only', 1), ('christmas.', 1), ('"moriarty?"', 1), ('formidable--so', 1), ('unsuccessful.', 1), ('outrage,', 1), ('waiter,', 1), ('x', 1), ('horse!"', 1), ('cruel."', 1), ("murder'", 1), ("hunter?'", 1), ('carve', 1), ("'lord", 1), ('nephew!', 1), ('share.', 1), ('muff', 1), ('hearth-rug', 1), ('complete,"', 1), ('firmly.', 1), ('advised."', 1), ('streets.', 1), ('whereas', 1), ('credit,', 1), ('overcoats', 1), ('fiend.', 1), ('next--matters', 1), ('entangle', 1), ("ready.'", 1), ('food."', 1), ('bread-crumbs', 1), ('relentless', 1), ('waxen', 1), ('danger?', 1), ('gods', 1), ("nominal.'", 1), ('monumental', 1), ('egg,', 1), ('clearness,', 1), ('squareness', 1), ('boggy', 1), ('hampstead,', 1), ('margate', 1), ('side?', 1), ('exhort', 1), ('vague,"', 1), ('whitney.', 1), ('dubious', 1), ('diabetes', 1), ('faculty.', 1), ('biting', 1), ('cobb,', 1), ("vacancies.'", 1), ('nitrate', 1), ('squander', 1), ('1647,', 1), ('distressed', 1), ('shillings.', 1), ('thief!', 1), ('drying.', 1), ("paper-mills.'", 1), ('bay--the', 1), ('attracts', 1), ('virtue.', 1), ('october.', 1), ('him--in', 1), ('experience--should', 1), ('covered.', 1), ('rope?"', 1), ('occurrences', 1), ("'all", 1), ('over,"', 1), ('wells,', 1), ("wing,'", 1), ('ferocious', 1), ("'arthur", 1), ('repulsion,', 1), ('depot', 1), ('hospitality,', 1), ('bayard', 1), ('youth?"', 1), ('campaigner', 1), ('chuckling.', 1), ('character?"', 1), ('arm;', 1), ('tumblers,', 1), ('withheld?', 1), ("so?'", 1), ('armor', 1), ('two--gaunt,', 1), ('expects', 1), ('criminology', 1), ('bundle.', 1), ('zoo,', 1), ('shipmate', 1), ('midlands,', 1), ('night-dress,', 1), ('recollect,', 1), ('grossness', 1), ('trepoff', 1), ('derives', 1), ('luxuriant,', 1), ("go?'", 1), ('lachine', 1), ('setback', 1), ('positive,', 1), ('ignorance,', 1), ('fathomed', 1), ('3.36,', 1), ("before.'", 1), ('moss-rose', 1), ('probability--the', 1), ('bulwark', 1), ("patience.--neville.'", 1), ('signifies."', 1), ('exultation.', 1), ('overlook', 1), ('gloriously', 1), ('bait.', 1), ('aluminum', 1), ('openings', 1), ('resting', 1), ('"twenty-four', 1), ('simply.', 1), ('appears--though', 1), ('destination,', 1), ('"\'"just', 1), ('farrington', 1), ("destroyed.'", 1), ('quick-witted,', 1), ('taking.', 1), ('bitten.', 1), ('regretted.', 1), ('reds', 1), ('line--and', 1), ('grouped', 1), ('sweat', 1), ('red-bearded', 1), ('plunge.', 1), ('throughout.', 1), ('chuckle,', 1), ('detectives,', 1), ('forged', 1), ('suspicious."', 1), ('shrewdly', 1), ('resolved.', 1), ('23rd', 1), ('junk', 1), ('hungrily', 1), ('director?"', 1), ('operations,', 1), ('toast', 1), ('frock', 1), ("'sir'", 1), ('consults', 1), ("boat's", 1), ('awkward,', 1), ('didactic', 1), ('comfort.', 1), ('developing', 1), ('cunningham,"', 1), ('excited,"', 1), ('solicitations', 1), ('preserve,', 1), ('conjectured.', 1), ('congratulation.', 1), ('lameness,', 1), ('tear,', 1), ('constraint."', 1), ('taciturn.', 1), ('freebody,', 1), ('investment', 1), ('by?"', 1), ('passions,', 1), ('leakage,', 1), ('donna', 1), ('damaged', 1), ('spray,', 1), ('laughing-stock', 1), ('wagons', 1), ('young)', 1), ('picnic.', 1), ('buck', 1), ('"dundee,', 1), ('spear', 1), ('left--both', 1), ('curiosities."', 1), ('basketful', 1), ('crests', 1), ('subdued,', 1), ('think?', 1), ('affaire', 1), ('whittled', 1), ('catalepsy?"', 1), ('slavey.', 1), ('lacked', 1), ('pallor.', 1), ('champion', 1), ('"c.p.r.,"', 1), ('legacy', 1), ('sign."', 1), ('surmised,', 1), ('both;', 1), ('socks', 1), ('proofs?"', 1), ('24th.', 1), ('after-taste', 1), ('tonnage', 1), ('gaunter', 1), ('weave,', 1), ('branded', 1), ('stable-lad', 1), ('half-fainting', 1), ('throwback,', 1), ('shoved', 1), ('won\'t,"', 1), ('deprecation', 1), ('quit', 1), ("safety.'", 1), ('overstrung', 1), ('clock,', 1), ('coeur.', 1), ('account:', 1), ('"1883."', 1), ('"\'until', 1), ('scrupulous', 1), ('spaniel."', 1), ('"\'16', 1), ("art's", 1), ("police,'", 1), ("tradesman.'", 1), ('dismiss.', 1), ('dustcoat', 1), ('dexterous', 1), ('disputatious', 1), ('strip,', 1), ('prompt,', 1), ('dart', 1), ('crank?"', 1), ('conversed,', 1), ('industrious.', 1), ('wench.', 1), ('valise,', 1), ('sender?"', 1), ('dismissal--until', 1), ('human,"', 1), ('infinity', 1), ('barrymores,', 1), ('expectations', 1), ('direction,"', 1), ('battle,', 1), ('air-guns?', 1), ('information,"', 1), ('stores', 1), ('ankle-deep', 1), ('unaddressed', 1), ('d.d.,', 1), ('hat--"but', 1), ('theirs', 1), ('straw,"', 1), ('followers,"', 1), ('glance;', 1), ("sum?'", 1), ('discovered."', 1), ('contrived', 1), ('easily--i', 1), ('cigar-holder.', 1), ("mycroft's", 1), ('basis,', 1), ('lodgings?"', 1), ('sufferings.', 1), ('into,', 1), ('girl?"', 1), ('terrace;', 1), ('shy,', 1), ('agra', 1), ('dime', 1), ('coincidence."', 1), ('gazed.', 1), ('quest,"', 1), ('flats,', 1), ('"help!', 1), ('move.', 1), ('burn.', 1), ('personate', 1), ('coal', 1), ('night-express,"', 1), ('hazarded', 1), ('gather,', 1), ('disguise--the', 1), ("mother's,", 1), ('retains', 1), ('perplexity."', 1), ('injunction', 1), ('many-pointed', 1), ('unsigned', 1), ('yet--"', 1), ('sir--one', 1), ('"encyclopaedia', 1), ('cricket-cap', 1), ('sleeping.', 1), ('chair!"', 1), ('"mister,', 1), ('stay?"', 1), ('governess.', 1), ('scattered.', 1), ('morris.', 1), ('back:', 1), ('however"--she', 1), ('1869,', 1), ('ascetic,', 1), ('mayor', 1), ('triangular', 1), ('footpaths', 1), ('else?', 1), ('abruptly;', 1), ('inconvenienced', 1), ('brewer,', 1), ("plot--that's", 1), ('coronet."', 1), ('voluntary', 1), ('flap.', 1), ("progress?'", 1), ('goes?"', 1), ('aquiline,', 1), ('primness,', 1), ("handsome,'", 1), ('want."', 1), ('specialist,', 1), ('endured.', 1), ('sunshine."', 1), ('fluffy,', 1), ('congested', 1), ('boot!"', 1), ('fantastic,', 1), ('protrude', 1), ('culprit,', 1), ('briarbrae."', 1), ('scratch,', 1), ('insists', 1), ('water-jug,', 1), ('mountains', 1), ('den?"', 1), ('doran?"', 1), ('negative.', 1), ('presence."', 1), ("pickwick's", 1), ('humor', 1), ('verdes', 1), ('ratcliff', 1), ('sculpture', 1), ('barrel.', 1), ("anybody's", 1), ('faults', 1), ('one--and', 1), ('peering,', 1), ('moffat."', 1), ('darkling', 1), ('table-drawer', 1), ('strangers.', 1), ('tasteless.', 1), ('forty-nine.', 1), ('cub,', 1), ('brushes', 1), ('realities', 1), ("man?'", 1), ('evenings,', 1), ('cousins', 1), ('business;', 1), ('parsonage,', 1), ('gainer', 1), ('commissions', 1), ('churlish', 1), ('demonstrations.', 1), ('gray-headed', 1), ('long?', 1), ('caution.', 1), ('planter', 1), ('veranda.', 1), ("potter's", 1), ('buckets', 1), ('ambuscade.', 1), ('ugliness.', 1), ('chosen?', 1), ('superscribed', 1), ("'well,'", 1), ("'his", 1), ('ex-australian.', 1), ('moulds', 1), ('door--that', 1), ('"nothing,"', 1), ('white-and-tan', 1), ('numbers.', 1), ('died--she', 1), ('huret,', 1), ('pockets?"', 1), ('consist', 1), ('coaxing.', 1), ('perchance--to', 1), ('sucker', 1), ('sea."', 1), ("notice.'", 1), ('gottsreich', 1), ('archie', 1), ("elsie's", 1), ('"naturally."', 1), ('devils,"', 1), ("'never.'", 1), ('pencils,', 1), ('randalls,', 1), ('alarm."', 1), ('museum."', 1), ('scales.', 1), ('wheel.', 1), ('payment', 1), ('driving-rod', 1), ('essence', 1), ('22nd,', 1), ('dowry.', 1), ('them--when', 1), ('motioning', 1), ('pedestal,', 1), ('coppers', 1), ('fashion!', 1), ('stable,', 1), ('promptly.', 1), ('event--the', 1), ('opticians."', 1), ('drained', 1), ('paradol', 1), ('flock', 1), ('fierceness.', 1), ('centred', 1), ('hull', 1), ('card-case.', 1), ("japan.'", 1), ('barrymore,"', 1), ('joke."', 1), ('grasp,', 1), ('pale?', 1), ('alleging', 1), ('ungrateful."', 1), ('islands.', 1), ('quotes', 1), ('moment;', 1), ('groves', 1), ('c,', 1), ('performance--very', 1), ('funds', 1), ("elrige's,", 1), ('over-pleasant.', 1), ('plugs', 1), ('deception?"', 1), ('authenticity,', 1), ("beecher's", 1), ('couched', 1), ('hours,"', 1), ('mantle.', 1), ('it--to', 1), ('antidote', 1), ('unfenced,', 1), ('trap?"', 1), ('anyhow?', 1), ('worse?"', 1), ('scarred', 1), ('demands,', 1), ('commonplace."', 1), ('famished', 1), ('kemp--a', 1), ('"imitated."', 1), ('ostentatiously', 1), ('becomes.', 1), ('loosened,', 1), ('boarding-school,', 1), ('enterprising', 1), ('boulder-sprinkled', 1), ('commissionnaire?"', 1), ("trade,'", 1), ('ever-growing', 1), ('gadabout.', 1), ('help!', 1), ('it--that', 1), ('soil.', 1), ('criticism.', 1), ('beeswing."', 1), ('brother--for', 1), ('reptilian', 1), ('snuff', 1), ('helpmate', 1), ('mislaid', 1), ('lies."', 1), ('unshaven.', 1), ('shins', 1), ('billets', 1), ('pack.', 1), ('"splendid!"', 1), ('immaculate', 1), ('kate!', 1), ('purposes', 1), ('retailers', 1), ('dividing', 1), ('occupied.', 1), ('"tuesday', 1), ('quests', 1), ('m,', 1), ('norwood,"', 1), ('cousin--not', 1), ('p.', 1), ('well;', 1), ('cosmopolitan', 1), ('composure,', 1), ('children,"', 1), ('obstinate."', 1), ('shaving', 1), ('wagged', 1), ('thumb-mark.', 1), ('on,"', 1), ('mediterranean.', 1), ('hacked', 1), ('paper--which,', 1), ('secrets,"', 1), ('respectively', 1), ("fear.'", 1), ('apiece', 1), ('nostrils.', 1), ('china,', 1), ('side-issues.', 1), ('beds.', 1), ('theft.', 1), ('paper?', 1), ('manifesting', 1), ('never.', 1), ("wife.'", 1), ('yet--what', 1), ('precipitate', 1), ('hamlet,', 1), ('grab', 1), ('weather?"', 1), ('architects,', 1), ("fixe,'", 1), ('basle."', 1), ('villain!--now,', 1), ('shivering.', 1), ('high-road', 1), ('references,', 1), ('villages,', 1), ('clerks,', 1), ('secret--the', 1), ('cavity', 1), ('barmaid,', 1), ('fiver,', 1), ('bled', 1), ('progressing.', 1), ('am--but', 1), ('reclining', 1), ('dew,', 1), ('dramatist', 1), ('flat-chested,', 1), ('depth."', 1), ('fiends', 1), ('future."', 1), ('impressing', 1), ('masterly', 1), ('jimmy?"', 1), ('ill-treating', 1), ('chasing.', 1), ('unsatisfied.', 1), ('though--almost', 1), ('proving,', 1), ('kinsman', 1), ('imbedded', 1), ("'remember,", 1), ('dwell,', 1), ('disarmed', 1), ("dealer's,", 1), ('understanding.', 1), ('advanced.', 1), ('dangers.', 1), ('tint!', 1), ('breath--a', 1), ('mortgage.', 1), ('"moor"', 1), ('budget', 1), ('honestly', 1), ("miles'", 1), ('handsome?"', 1), ('prospecting', 1), ('trepidation,', 1), ('importers', 1), ('leaves,', 1), ('ill-treatment--that', 1), ('sensualist', 1), ('right--you', 1), ('cornwall,', 1), ("boys'", 1), ('mask."', 1), ('slippers,', 1), ('begin,', 1), ('gaol', 1), ('astutely', 1), ('"medium-looking', 1), ('chalk.', 1), ('absence.', 1), ('addressing.', 1), ('shed,"', 1), ('exchanging', 1), ('heraldic', 1), ('mall.', 1), ('litigation.', 1), ('solder', 1), ('mortification.', 1), ('vowed', 1), ('away?', 1), ('sake,"', 1), ('overseen', 1), ('dozen,"', 1), ('doddering,', 1), ('joined.', 1), ('chair--holmes', 1), ('blocks', 1), ('had,"', 1), ('half-spoken,', 1), ('irrepressible', 1), ('meeting.', 1), ('half-starved.', 1), ('cosmopolitan,"', 1), ('ku', 1), ('injured?"', 1), ('minimize', 1), ('grain', 1), ('heavy-bowed,', 1), ('fly-leaf', 1), ('nickel', 1), ('sets', 1), ('flurried,', 1), ('report?"', 1), ('fancier,', 1), ('faithful,', 1), ('daubed.', 1), ('map,', 1), ('lesions?"', 1), ('said?"', 1), ('bonniest,', 1), ('disbelieved', 1), ('ocean.', 1), ('logs', 1), ('accumulation', 1), ('abreast,', 1), ('dies.', 1), ('express."', 1), ('1888--i', 1), ('authorities.', 1), ('clad,', 1), ('contempt', 1), ('undecided', 1), ('averted', 1), ('rhodesia.', 1), ('resistless,', 1), ('stooped,', 1), ('"[this', 1), ('poses,', 1), ('loving,', 1), ('scraped', 1), ('up--he', 1), ('bloc', 1), ('horsham."', 1), ('studies.', 1), ('convey.', 1), ('inferences."', 1), ('gypsies,', 1), ('audience', 1), ('frail.', 1), ('suns,', 1), ('surer', 1), ('costa', 1), ('studying.', 1), ('writing--here', 1), ('over--so', 1), ('felt?"', 1), ('sweating--rank', 1), ('baboon,', 1), ('brunton,"', 1), ('.--"and', 1), ('acted.', 1), ('outcast', 1), ('limps', 1), ('miasmatic', 1), ('relapse.', 1), ('biggest', 1), ('dragon', 1), ('cuplike', 1), ('clean-cut,', 1), ('eighty-pound-a-year', 1), ('manufacturers.', 1), ('invaders.', 1), ('shown.', 1), ("minutes!'", 1), ('shelterless', 1), ('increased--as', 1), ('ranging', 1), ('key!"', 1), ('each.', 1), ('wisps', 1), ('ails', 1), ('badly.', 1), ('well-made', 1), ('beecher,', 1), ('carrée,', 1), ('harder', 1), ('whiter.', 1), ('development?"', 1), ('dolichocephalic', 1), ('lhassa,', 1), ('janet', 1), ('reported.', 1), ('dramatic,', 1), ('au', 1), ('ground--"let', 1), ('useful,', 1), ('devil!', 1), ('two-yearer', 1), ('voice--"have', 1), ('tidiness,', 1), ('amount.', 1), ('constabulary,', 1), ('switch,', 1), ('perform?"', 1), ("interpreter's", 1), ('wide-spread,', 1), ('lack-lustre', 1), ('yellow-shot,', 1), ('limestone', 1), ('equanimity,', 1), ('disillusion', 1), ('smoothly', 1), ('destiny', 1), ('warsaw--yes!', 1), ('jot', 1), ("coster's", 1), ('bosom,', 1), ("madam,'", 1), ('downfall--not,', 1), ('away!"', 1), ('quick-tempered,', 1), ('remark."', 1), ('recapture', 1), ('house-surgeon', 1), ('criss-crossed', 1), ('wondering,', 1), ("seven-and-six.'", 1), ("mare's-tails", 1), ('industry', 1), ('coroner,', 1), ('herefordshire.', 1), ('fret', 1), ('cipher,', 1), ('pulse,', 1), ('certainly--but', 1), ('twelve-mile', 1), ('strained."', 1), ("situation.'", 1), ('opticians', 1), ('ungracious,', 1), ('waterbeach,', 1), ('second:', 1), ('destitute', 1), ('figures.', 1), ('curve!"', 1), ('menage', 1), ('self-respect."', 1), ('limping', 1), ("i.'", 1), ('warnings?"', 1), ('"moriarty."', 1), ("paul!'", 1), ('morose.', 1), ('refreshing', 1), ('manuscript,"', 1), ('"joseph!"', 1), ('due?', 1), ('spies!"', 1), ('physical.', 1), ('ill-humor', 1), ('organization', 1), ('powder-marking', 1), ('future--by', 1), ('inception', 1), ('labors', 1), ('distasteful', 1), ('"life', 1), ('junction,', 1), ('overwrought.', 1), ('stop,', 1), ('good-day."', 1), ('kidnapped,', 1), ('both,"', 1), ('circumstance,', 1), ('droop', 1), ('millionaire.', 1), ('ear-flapped', 1), ('telegrams,', 1), ('smith?"', 1), ('animals', 1), ('irish-setter,', 1), ('documents--building', 1), ('heelless', 1), ('wrongs', 1), ('basil.', 1), ('whisper."', 1), ('mutter,', 1), ('short-handed.', 1), ('"children,', 1), ('remember,"', 1), ("for'", 1), ('course."', 1), ('hauled', 1), ('queer,', 1), ('"_gloria', 1), ('"\'"right', 1), ('"jabez', 1), ('languages--or', 1), ('thigh', 1), ('unquestionable', 1), ('developments?"', 1), ('jollification', 1), ('articulate,', 1), ('disown', 1), ('ruffian!', 1), ('betrayed,', 1), ('rothiere,', 1), ('nurse-girl,', 1), ("ours.'", 1), ('stable.', 1), ('cheerful."', 1), ('once;', 1), ('kerchief', 1), ('tendon-nicking', 1), ('trailed', 1), ('mild-mannered,', 1), ('annals,', 1), ('illustrated', 1), ('enemy."', 1), ("'band,'", 1), ('husband?"', 1), ("think,'", 1), ('stable."', 1), ('rifle,', 1), ('pulp.', 1), ('brim', 1), ('sniffing', 1), ('reported."', 1), ('london;', 1), ('honoured."', 1), ('notice--that', 1), ('supplementing', 1), ('italians,', 1), ('exactly!"', 1), ('tattoo', 1), ('whipcord.', 1), ('know--may', 1), ('safeguard', 1), ('calls.', 1), ('bull?', 1), ("means.'", 1), ('headache', 1), ('cards--playing', 1), ('inferences,', 1), ('plethora', 1), ('outstanding', 1), ('impetuous--volcanic,', 1), ('signet-ring."', 1), ('tenors', 1), ('companion:', 1), ('furze-bushes.', 1), ('scars', 1), ('immemorial,', 1), ('calmer', 1), ('feeling?', 1), ('"there!', 1), ('civilised', 1), ('foxy', 1), ('flies,', 1), ('diplomacy', 1), ('does;', 1), ('vexed', 1), ('greece."', 1), ("latimer,'", 1), ('latch', 1), ('certainty,', 1), ('pale-faced', 1), ('dog-cart?', 1), ('joyous.', 1), ('seaports.', 1), ('debris.', 1), ('sit,', 1), ('via', 1), ('term.', 1), ('precaution,', 1), ('cottages,', 1), ('wish?"', 1), ('encamp', 1), ('cathedral,', 1), ('entered?"', 1), ('slip.', 1), ('necessitate', 1), ('lama.', 1), ('application,', 1), ('dangled', 1), ('ensured', 1), ("p's", 1), ('lights.', 1), ('between.', 1), ('conundrums."', 1), ('conquest', 1), ("whatever.'", 1), ('colouring', 1), ('baskets', 1), ('position,"', 1), ('recruited', 1), ('lintel,', 1), ("'lost,", 1), ('lifting', 1), ('bog-hole,', 1), ('richly', 1), ('bargain.', 1), ('wait,"', 1), ('tottered', 1), ('determine."', 1), ('omitting', 1), ('peaches.', 1), ('pa,', 1), ('boxers', 1), ('reverential', 1), ('solution--in', 1), ('pillows,', 1), ('profiting', 1), ('proceed?"', 1), ('slippery,', 1), ("twelvemonth.'", 1), ('sluggish', 1), ("any--'", 1), ('system,', 1), ('gas-jet.', 1), ("kind,'", 1), ('savages', 1), ('ashy', 1), ('direction!', 1), ('acquiesced.', 1), ('men--more,', 1), ('dad,', 1), ('violin-player,', 1), ('blow,"', 1), ('imposture?"', 1), ('action--you', 1), ('stage?"', 1), ('pistol."', 1), ('chaffering', 1), ('asthmatic,', 1), ('mice,', 1), ('marble,', 1), ('endeavoured,', 1), ('assented.', 1), ('plentifully', 1), ('instruct,', 1), ('before!', 1), ('"ay,', 1), ('robber.', 1), ('newer', 1), ('office-like', 1), ("minstrel's", 1), ('scullery-maid,', 1), ('savant.', 1), ('gone;', 1), ('dad?"', 1), ('half-hearted', 1), ('electric-blue', 1), ('comrades?', 1), ('along--"', 1), ('devil--god', 1), ("williamson's", 1), ('drunk?"', 1), ('appreciable', 1), ('tariff,', 1), ('mafia', 1), ('however--which', 1), ('hilda!', 1), ('"willoughby', 1), ('reconnoitres', 1), ('discoveries', 1), ('sponge', 1), ('store-house', 1), ('"\'"victor,', 1), ('sojourn', 1), ('reed-girt', 1), ('"pooh!', 1), ('unkennel', 1), ('1901', 1), ('carelessly.', 1), ('three----"', 1), ('dance.', 1), ('conspicuous.', 1), ('manuscript."', 1), ('facts!', 1), ('blaze,"', 1), ('officer,"', 1), ('ensued.', 1), ('acres.', 1), ('practical,"', 1), ('manager?', 1), ('sleeper', 1), ('serrated', 1), ('pace.', 1), ('signalled', 1), ('unresponsive', 1), ('misshapen', 1), ('describe."', 1), ('recognized,', 1), ("hurry.'", 1), ('athene', 1), ('envelopes,', 1), ('signal-lamps', 1), ('cropper.', 1), ('soldier.', 1), ('advise.', 1), ("paris,'", 1), ('brand."', 1), ('conveys', 1), ('bowls', 1), ('horseback', 1), ('bloodless,', 1), ('alphabet,', 1), ('succumbed.', 1), ('faces!"', 1), ('9:50,', 1), ('prettiest', 1), ('today?"', 1), ('disguises', 1), ('shreds."', 1), ('earth--one', 1), ('seriousness,', 1), ('gallop."', 1), ('retrogression?"', 1), ('pinnacle,', 1), ('steeples', 1), ('riveted,', 1), ("'gesellschaft,'", 1), ('unanswered', 1), ('other--if', 1), ('awaiting.', 1), ('prairie', 1), ('school-fellows,', 1), ('apple,', 1), ("value?'", 1), ('nuts.', 1), ('there;', 1), ('dreadful-looking', 1), ('concerned,"', 1), ('start?"', 1), ('undo', 1), ('housemaid.', 1), ('theatre-goers', 1), ('cleaning', 1), ("saltire's.", 1), ('horizon.', 1), ('press."', 1), ('feverish', 1), ('advantage,"', 1), ('exclamation,', 1), ('sacrificing', 1), ('spread-eagled', 1), ('"coarse', 1), ('morris', 1), ('anarchist', 1), ('unlimited', 1), ('interpreter."', 1), ('chesterton,', 1), ("allardyce's", 1), ('bookshop', 1), ('foxhound.', 1), ('altar.', 1), ('need."', 1), ("'fire!'?", 1), ('burnished', 1), ('disposed', 1), ('célèbres', 1), ('respond', 1), ('tiara.', 1), ('contributed', 1), ('hoarsely.', 1), ('cambridge?"', 1), ("training-stables,'", 1), ('humans.', 1), ('ponies!"', 1), ('drift.', 1), ('twenty-mile', 1), ('obese,', 1), ('yet?', 1), ("go,'", 1), ('gregarious', 1), ('walk.', 1), ('succinct', 1), ('negress,', 1), ('barrymore;', 1), ('wool', 1), ('swallow', 1), ('modified.', 1), ('fellow-students,', 1), ('working,', 1), ('mount-james."', 1), ('calves,', 1), ('reputation?"', 1), ('"\'perfectly.\'', 1), ('conventionalities', 1), ("gardener,'", 1), ('wright,', 1), ('straw,', 1), ('friend?', 1), ('fool.', 1), ('johnnie', 1), ('giggled', 1), ('watson--all', 1), ('streets,', 1), ('quarreled', 1), ('canvas."', 1), ('near.', 1), ('interested--white,', 1), ('chronicle,"', 1), ('disarranged,', 1), ('housemaid."', 1), ('matheson,', 1), ('travel."', 1), ('opponents', 1), ('atlantic.', 1), ('kitchens', 1), ('foundered', 1), ('lady!', 1), ('fingers."', 1), ('lumber-room."', 1), ('stepfather?"', 1), ('perhaps?"', 1), ('hatherley,"', 1), ('camberwell."', 1), ('try?"', 1), ('sufferings', 1), ('carere,', 1), ('inaccessible', 1), ('lyons,"', 1), ('word--never', 1), ("known--'", 1), ('over--i', 1), ('1607,', 1), ('enemy--it', 1), ('prowling', 1), ('boarding-schools.', 1), ('article?"', 1), ('unicorn', 1), ('directors', 1), ('(lancet', 1), ('thick-soled', 1), ('mood--"you', 1), ('personification', 1), ('mirror.', 1), ('worse--and', 1), ('reddish', 1), ('cinnamon', 1), ('cornelius,', 1), ('occasion."', 1), ('worth,', 1), ("warburton's", 1), ('falmouth.', 1), ('successes!"', 1), ('extent."', 1), ('half-jesting', 1), ('danger--"', 1), ("money,'", 1), ('hope?"', 1), ('elapse', 1), ("fortnight's", 1), ('coventry,', 1), ('marm?"', 1), ("jew's-harp.", 1), ("simon's", 1), ('afternoon,"', 1), ('bitterness', 1), ('solved.', 1), ('assumed,', 1), ('often.', 1), ('london--eastern', 1), ("'45--fifty", 1), ('introductions.', 1), ('captain.', 1), ('father;', 1), ('ill-health', 1), ('superior.', 1), ('slurring', 1), ('paramount', 1), ('protest,', 1), ('switch', 1), ("known.'", 1), ('advertisements,', 1), ('insoluble', 1), ("necessary,'", 1), ('advance.', 1), ('poking', 1), ('informality', 1), ('adhere', 1), ("eavesdroppers?'", 1), ('disagreeable,', 1), ('cent', 1), ('permissible.', 1), ('"\'"mr.', 1), ('takings.', 1), ('angular', 1), ('arrangements."', 1), ('dark-eyed', 1), ('seal.', 1), ('nose?"', 1), ('confession."', 1), ('molested.', 1), ('hypothesis.', 1), ('methodical.', 1), ('bile-shot', 1), ('checkmated', 1), ('continual', 1), ('gloomiest', 1), ('uproar.', 1), ('vernet,', 1), ("dundee.'", 1), ('rider.', 1), ('fairy-tales?', 1), ('mangled', 1), ('slope.', 1), ("'learn'", 1), ('twain', 1), ("acton's,", 1), ('pitt."', 1), ('initials.', 1), ('depicting.', 1), ('descent,', 1), ('miscalculated', 1), ('knock,', 1), ('enveloped', 1), ('poetic', 1), ('garment', 1), ('"madness,', 1), ('disowning', 1), ('cordial', 1), ('to!"', 1), ('reason,"', 1), ('conditions?"', 1), ('manservant', 1), ("she,'", 1), ('idling', 1), ('regions', 1), ('waterproof.', 1), ('creep', 1), ('charasiab', 1), ('conk-singleton', 1), ('pyramid', 1), ('simplifies', 1), ('coachman----"', 1), ('marshalled', 1), ('red-and-black', 1), ('whiter', 1), ('statement:', 1), ('bath,"', 1), ('dizziness', 1), ('befell', 1), ('widow."', 1), ('spirit?"', 1), ('invest,', 1), ('crop."', 1), ('somersault.', 1), ('delivered,', 1), ('fumbled', 1), ('cyril."', 1), ('ferguson.', 1), ('story-teller.', 1), ('burrow."', 1), ('gray-whiskered', 1), ('nameless,', 1), ('reporter', 1), ('master?"', 1), ('fore-lock.', 1), ('unopened', 1), ('anyhow', 1), ('myself!', 1), ('gashed', 1), ('scholastic', 1), ('hand-mirror', 1), ('foreseeing', 1), ('monster,', 1), ('put,', 1), ('week,"', 1), ('jumping-shoes,', 1), ('atone."', 1), ('deranged?"', 1), ('aveling,', 1), ('jealous', 1), ('efficient.', 1), ("munificent.'", 1), ('illness.', 1), ('artillery."', 1), ('marked,', 1), ('then--and', 1), ('denial,', 1), ('lucerne,', 1), ('enwrapped', 1), ('"\'photography', 1), ('dogs!', 1), ("'hullo!", 1), ('birmingham?"', 1), ('crocodile-skin', 1), ('tack.', 1), ('pavements,', 1), ("mortimer's,", 1), ('coast.', 1), ('house--mr.', 1), ('pope', 1), ('masks.', 1), ('bordering', 1), ('mines."', 1), ('lime-cream,', 1), ('sergius,', 1), ('everywhere,', 1), ('"good-morning.', 1), ('puffy-faced,', 1), ('door-step,', 1), ("boars'", 1), ('selfishness."', 1), ('practising', 1), ('connected--must', 1), ('lyons."', 1), ('forty-five.', 1), ('over!"', 1), ('over-good', 1), ('him--it', 1), ('dismounted', 1), ('risks', 1), ('manor-house', 1), ("used.'", 1), ('checked', 1), ('jest.', 1), ('lied--said', 1), ('jockey.', 1), ('apologies.', 1), ('indulged', 1), ('pebbles', 1), ('trick."', 1), ('shielded', 1), ("beryls,'", 1), ('irene,', 1), ('strenuous', 1), ('labours', 1), ('luxembourg', 1), ('doth', 1), ('enliven', 1), ('neatness', 1), ('dunlop,', 1), ('bargained', 1), ('alarms', 1), ('henry;', 1), ('graves', 1), ('tall.', 1), ('progress,"', 1), ('ballarat."', 1), ('any.', 1), ('tool,', 1), ('foliage', 1), ('tallow--walks', 1), ('consistent', 1), ('recharging', 1), ('doom', 1), ('cataract', 1), ('dainty.', 1), ('orphan,', 1), ('couples', 1), ('sir--nothing."', 1), ('aunt,', 1), ('cartridges', 1), ('fanatical', 1), ('realised,', 1), ('possible--at', 1), ('unworldly', 1), ("russell's", 1), ('patriotism', 1), ('hand-made', 1), ('flooded', 1), ('hilarious', 1), ('spots,', 1), ('coldly,', 1), ('disguises,', 1), ('sprightly--very', 1), ('noticing', 1), ('virulent', 1), ("here!'", 1), ('wore,', 1), ('favor,', 1), ('concoction', 1), ("'trust", 1), ('italians', 1), ('home-centred', 1), ('knife?"', 1), ('thirty-nine,', 1), ('silent."', 1), ('stable-boy?', 1), ('pinched', 1), ('unmarried.', 1), ('eleven-twenty,', 1), ('magnificently', 1), ('"sound', 1), ('"must,', 1), ('caunter,', 1), ('aid."', 1), ('"here,', 1), ('blended.', 1), ('open!"', 1), ('escaped!"', 1), ('greenwich.', 1), ('most,', 1), ('russo-german', 1), ('ungenerous', 1), ('complication', 1), ('depravity', 1), ('tobacconists', 1), ('welcomed', 1), ('out-of-work', 1), ('identification', 1), ('"\'impossible!\'', 1), ('eliza.', 1), ('parted.', 1), ('parted,', 1), ('orchids', 1), ('appledore,', 1), ('cataract,', 1), ('builder.', 1), ('bid', 1), ('"patrick', 1), ('it?--a', 1), ('high-class', 1), ('lepidoptera?', 1), ('apart.', 1), ('figured', 1), ('sealskin', 1), ('ill-advised', 1), ('occupation."', 1), ('workers', 1), ('hence,', 1), ('pathology', 1), ('commercial', 1), ('stringent', 1), ('too,"', 1), ('jay,', 1), ("cross'", 1), ('laboratory,', 1), ('canada', 1), ('stain!', 1), ('downward,', 1), ('effeminacy.', 1), ('quiet?"', 1), ('117th', 1), ('better-lined', 1), ('medal', 1), ('ties."', 1), ('railing,', 1), ('regency,', 1), ('islander', 1), ('philosophic', 1), ("wardlaw's", 1), ('wearisome', 1), ('meals.', 1), ('rapped', 1), ('bloomsbury', 1), ('sensationalism,', 1), ('bare-headed,', 1), ('earlier."', 1), ('accessory,', 1), ('astronomer,', 1), ('wooden-walled,', 1), ('weaken', 1), ('greenhouse', 1), ('holland,', 1), ('westphail,', 1), ('really!', 1), ('accordingly."', 1), ('throbbed', 1), ('unpacked', 1), ('loopholes.', 1), ('mended,', 1), ('medico', 1), ('9,', 1), ('herself--and', 1), ('doing--but', 1), ('reichenbach,', 1), ('lady;', 1), ('delusion', 1), ('peaky', 1), ('chapter,', 1), ('saw.', 1), ('fess', 1), ('ray', 1), ('"terse', 1), ('verdict."', 1), ('"hurrah!"', 1), ('by-the-way,', 1), ('do--really', 1), ('frightening', 1), ('smokeless', 1), ('"tall?', 1), ('windings', 1), ('marking', 1), ('unusually', 1), ('"\'next', 1), ('sophy', 1), ('hardship', 1), ('footmark', 1), ('light-blue', 1), ('escott,', 1), ('see?', 1), ('sorry,"', 1), ('child?"', 1), ('leaving."', 1), ("cask.'", 1), ("manager,'", 1), ('wants:', 1), ('marvellous."', 1), ('shikari,"', 1), ('petersfield.', 1), ('revolver."', 1), ('unthinkable', 1), ('darkened.', 1), ('coin', 1), ('fairy', 1), ('repairing', 1), ('cartridges,', 1), ('fat-encircled', 1), ('sitting-rooms.', 1), ('incredulity."', 1), ('between,', 1), ('reverse.', 1), ('the--"', 1), ('saints', 1), ('penitent,', 1), ('stabbed,', 1), ('whine', 1), ('paddington."', 1), ("ending.'", 1), ('eleven-thirty,', 1), ('nitrite', 1), ('odessa', 1), ("'can", 1), ('positive."', 1), ('badge', 1), ('fowler."', 1), ('vale,', 1), ('subduing', 1), ('available,', 1), ('sticking-plaster,', 1), ('foot-marks', 1), ('messages,', 1), ('dilemma', 1), ('golden-green', 1), ("'un'", 1), ('him--indeed,', 1), ('cowed', 1), ("stark'", 1), ('sterling.', 1), ('reflexes.', 1), ('large-scale', 1), ('hempen', 1), ('ink?', 1), ('herself--so', 1), ('swish', 1), ('ejector,', 1), ('steps?', 1), ('thirty-nine', 1), ('"\'sold', 1), ('invitation,', 1), ('dissipated', 1), ('mafia,', 1), ('lush,', 1), ('opus--the', 1), ('writer.', 1), ('abbots', 1), ('spirituality', 1), ('opium?', 1), ('land--god', 1), ('heaped', 1), ('rear-admiral', 1), ('hayling,', 1), ('mortifying', 1), ('lighter.', 1), ('baxter', 1), ('tends', 1), ("consciousness?'", 1), ('dwelling', 1), ('large.', 1), ("mastiff.'", 1), ('highly."', 1), ("no.'", 1), ('abroad?"', 1), ('conductor', 1), ('bradstreet."', 1), ('shooting-boots', 1), ('dismissal', 1), ('note-book.', 1), ('implicated', 1), ('owns', 1), ('look?"', 1), ('error.', 1), ('bolts', 1), ('conical', 1), ('shambling', 1), ('he--the', 1), ('anstruther', 1), ('infirm.', 1), ('coal-tar', 1), ('death--traces', 1), ('a.m.', 1), ('bass', 1), ('"sarasate', 1), ('reproduce', 1), ('ivernian', 1), ('says,"', 1), ('won."', 1), ('dooties,', 1), ('"perhaps,', 1), ('abortive.', 1), ('preponderance', 1), ('note-taking', 1), ('evidence;', 1), ('desperation,', 1), ("committed,'", 1), ('wright', 1), ('doncaster?', 1), ('fulham', 1), ('velvet,', 1), ('plenty.', 1), ('awry,', 1), ('gone?"', 1), ("lately?'", 1), ('succeeded.', 1), ('guilt."', 1), ('accident."', 1), ('explain."', 1), ('man--as', 1), ('adventuress,', 1), ('there!', 1), ("surprised,'", 1), ('newspaper;', 1), ('mud,', 1), ('philosophy,', 1), ('games', 1), ('stranger,"', 1), ("'c.c.h.'", 1), ('austerity.', 1), ('wring', 1), ('gaiters', 1), ('tags', 1), ('6:30', 1), ('self-inflicted."', 1), ('plumped', 1), ('endorsed', 1), ('perseverance.', 1), ('"formed', 1), ('pocketbook', 1), ('interview?"', 1), ('purse.', 1), ('foil', 1), ("moran's", 1), ('tons', 1), ('ungenerously,', 1), ('rascals!', 1), ('mould."', 1), ('lamplight', 1), ('i-dots', 1), ('booked', 1), ('status', 1), ('collection!"', 1), ('train!', 1), ('stuffs', 1), ('forget.', 1), ("baker'", 1), ("powers.'", 1), ('concern.', 1), ('impelled', 1), ('eagle-eyed,', 1), ('depth', 1), ('client--"', 1), ('ready-handed', 1), ('"blessington', 1), ('boy,"', 1), ('pentonville.', 1), ('vandeleurs', 1), ('3rd.', 1), ('pat?"', 1), ('baritsu,', 1), ('deceived."', 1), ('flank.', 1), ("latter.'", 1), ('rascally', 1), ('remanded', 1), ('thousand.', 1), ('mad!', 1), ('us--a', 1), ('"penang', 1), ('unkempt,', 1), ('imp', 1), ('infallibly', 1), ('himself--so', 1), ('wig', 1), ('condense', 1), ('chimpanzee.', 1), ('color-sergeant.', 1), ('beige,', 1), ('culture,', 1), ('interfering."', 1), ('concerts,', 1), ('infirmity', 1), ('argument,"', 1), ('majority--were', 1), ('contemplative', 1), ('prendergast.', 1), ('delicate,', 1), ('legally,', 1), ('document?"', 1), ('betimes', 1), ('convulse', 1), ('cigarette-case', 1), ('loyal,', 1), ('fasteners', 1), ('canterbury,', 1), ('limb', 1), ('appear."', 1), ('pistol.', 1), ("sake!'", 1), ('imports,', 1), ('evening--mistook', 1), ('pass?', 1), ('prank--if', 1), ('consequence,', 1), ('advent', 1), ('vain,', 1), ("sake!'--proves", 1), ('mysterious.', 1), ('half-hopeful', 1), ('invigorated', 1), ("maggie,'", 1), ('acquitted', 1), ('tunnels', 1), ('hopes--in', 1), ('widens', 1), ('thawed,', 1), ('carpeted', 1), ('analysis,', 1), ('minute--one', 1), ('fog,', 1), ("jack.'", 1), ('crooks', 1), ('dressing-room."', 1), ('inflict', 1), ('gambler,', 1), ("shepherd's", 1), ('"absolutely', 1), ('egria.', 1), ("accomplice's", 1), ("'who", 1), ('skirting', 1), ('roads."', 1), ('shapes.', 1), ("'to',", 1), ('monica,', 1), ('refurnished,', 1), ('escaped,', 1), ('valley.', 1), ('summarily', 1), ('gems.', 1), ('bravery', 1), ('well-hedged', 1), ('over-precipitance', 1), ('farintosh,', 1), ('bust?"', 1), ('coming?"', 1), ('me--rather', 1), ('water?', 1), ('homesickness,', 1), ('colossal', 1), ("confectioner's", 1), ("minutes,'", 1), ('prague', 1), ('confide.', 1), ('ends."', 1), ('expulsion.', 1), ('canvas.', 1), ('supporting', 1), ('chat,', 1), ('criticism', 1), ('beautifully.', 1), ('determine.', 1), ('coax', 1), ('international,', 1), ('storm.', 1), ('ham,', 1), ('inviting', 1), ('stiffness', 1), ('latter."', 1), ('exists', 1), ('liked.', 1), ('hoped,"', 1), ('deeply.', 1), ('organized.', 1), ('shallow', 1), ("foot.'", 1), ('from--perhaps', 1), ('overhauled,', 1), ('6d.\'"', 1), ('cords', 1), ('slipper', 1), ('groom.', 1), ('colouring,', 1), ('stories.', 1), ('westbury', 1), ("draper's", 1), ('frogged', 1), ('williams,', 1), ("selden's", 1), ('drinks,', 1), ("best.'", 1), ('flagged.', 1), ('vanished;', 1), ('mcfarlane,"', 1), ('crafty,', 1), ('streatham,', 1), ('greasy-backed', 1), ("father's.", 1), ('dictates', 1), ('unpleasantness.', 1), ('friends."', 1), ('gorse-bushes.', 1), ('readjusted', 1), ('shambles.', 1), ('types', 1), ('malevolent', 1), ('quay.', 1), ('million."', 1), ('profane,', 1), ('topic,', 1), ('prettily', 1), ('duster', 1), ('expire', 1), ('simpson,"', 1), ('her--a', 1), ('wrought', 1), ('farm?"', 1), ('precipice.', 1), ("james's,", 1), ('pierced,', 1), ('monstrous?', 1), ('hearts.', 1), ('tiara', 1), ('mislaid.', 1), ('travels', 1), ('repelled', 1), ('offences,', 1), ('gliding,', 1), ('delightful', 1), ('vegetation', 1), ('mourn', 1), ('eminently', 1), ('possess;', 1), ('sydney,', 1), ('(if,', 1), ('listen!', 1), ('several,', 1), ('murder!', 1), ('lady-day,', 1), ('safes,', 1), ('clearness', 1), ('shoves.', 1), ('lucid."', 1), ('walking.', 1), ('special."', 1), ('indisposition', 1), ('blue-gray', 1), ('ryder,"', 1), ('abduction,', 1), ('remember?"', 1), ('spoilt', 1), ('others--the', 1), ('cleaned?"', 1), ('sunburned', 1), ('perkins?"', 1), ("dead--there's", 1), ('to-night--and', 1), ('occurrences,', 1), ("resource.'", 1), ('eagerness.', 1), ('bearskin', 1), ('humanity,', 1), ('labouring', 1), ('rhododendron-bush.', 1), ('convicted', 1), ('consult,"', 1), ('abhors', 1), ('corrected', 1), ("'87", 1), ('by-word', 1), ('pierce', 1), ('hurt!"', 1), ('aboard,', 1), ('testimony', 1), ('bath-sponge.', 1), ('sportsman', 1), ('identity?"', 1), ('asperities', 1), ('bloodstains.', 1), ('exulted', 1), ("stuarts.'", 1), ('good-by,', 1), ('athlete,', 1), ('commencement,', 1), ('"s.', 1), ('fan,', 1), ('skippered', 1), ('overlooks', 1), ('advertised,', 1), ('swear!', 1), ('lauder,', 1), ('brunette,', 1), ('weighing-chair.', 1), ('insane,', 1), ('discredit', 1), ('billet,', 1), ('sagacity."', 1), ('sour', 1), ('floor)."', 1), ('box?', 1), ('berth.', 1), ('conscious.', 1), ('bog-girt', 1), ('to--the', 1), ('holborn,', 1), ('dogmatic', 1), ('disadvantage,', 1), ('lived."', 1), ('hinder', 1), ('smallish,', 1), ('solemnize', 1), ('unfeigned', 1), ('transverse', 1), ('mature', 1), ('eyelashes,', 1), ('snug,', 1), ("same.'", 1), ('free-handed', 1), ('says."', 1), ('bemused', 1), ('alas,', 1), ('"g"', 1), ('scala,', 1), ('courtly,', 1), ('securities?"', 1), ('frontal', 1), ('smoker,', 1), ('spitting', 1), ('gustave', 1), ('compass.', 1), ('seizures', 1), ('ticks,', 1), ('teddy,', 1), ('thermometer', 1), ('lyons!"', 1), ('tingle', 1), ('questioning--stared', 1), ('trudged', 1), ('agree.', 1), ('adaptable', 1), ('animated', 1), ('towers.', 1), ('groan,', 1), ('cusack', 1), ('inconceivable--impossible.', 1), ('grange"', 1), ('window-sash,', 1), ('pantry,', 1), ('fangs,', 1), ('weaver', 1), ('spurting', 1), ('evolved', 1), ('bewailing', 1), ('bungler,', 1), ('"\'after', 1), ('reszkes?', 1), ("'e,'", 1), ('pink-tinted', 1), ('scandinavia,', 1), ("jem?'", 1), ('4d.', 1), ('merged', 1), ('morrow', 1), ('bitterly.', 1), ('refuse.', 1), ('fatter,', 1), ("victor,'", 1), ('taper-faced', 1), ('hop', 1), ('three-foot', 1), ('shetland', 1), ('possessions--notably', 1), ('strengthening', 1), ('wreaths.', 1), ('rugs,', 1), ('libraries,', 1), ('parts.', 1), ('lookout,', 1), ('well-polished,', 1), ('translation', 1), ('technical', 1), ("letter.'", 1), ('morning;', 1), ('waist,', 1), ("adair's", 1), ('high-road.', 1), ('loathing.', 1), ('water-pool,', 1), ('shouted;', 1), ('decrepitude,', 1), ('volume,', 1), ('untoward', 1), ('laughs', 1), ('interests.', 1), ('fought', 1), ('torches', 1), ('noisy', 1), ('fastidious', 1), ('sprinting.', 1), ('life?', 1), ('foppishness,', 1), ('seaman?', 1), ('blurs', 1), ('held.', 1), ('watch--"in', 1), ('[in', 1), ('though,"', 1), ('colossal.', 1), ('heavens.', 1), ('understands', 1), ('moonshine."', 1), ('sots,', 1), ("'life", 1), ('officer."', 1), ('cloudless.', 1), ('saffron', 1), ('clerks.', 1), ('secluded,', 1), ('whistles', 1), ('cheek.', 1), ('bushy,', 1), ('greatcoat.', 1), ("peep!'", 1), ('out-building.', 1), ('ancestors.', 1), ('letters--imprudent,', 1), ('communicated,', 1), ('crying.', 1), ('band--a', 1), ('lichen-tinted', 1), ('highway.', 1), ('shabby-genteel', 1), ('earned,', 1), ("chance,'", 1), ('ornamental', 1), ('ancestor,', 1), ('member."', 1), ('traversed.', 1), ('patterson', 1), ("memory?'", 1), ('games.', 1), ('warder,', 1), ('wilder."', 1), ('cross,"', 1), ('hatherley.', 1), ('mark."', 1), ('document."', 1), ('tawny', 1), ('type.', 1), ('garden-party', 1), ('slightest.', 1), ('stone."', 1), ('masters.', 1), ('fait', 1), ('soames:', 1), ('jaundice,', 1), ('shrewd,', 1), ('remain,', 1), ('large-eyed,', 1), ('healed,', 1), ('concentrating', 1), ("century,'", 1), ('game--there', 1), ('roared,', 1), ('alighted.', 1), ('franco-prussian', 1), ('furrow.', 1), ('litmus-paper.', 1), ('serpents', 1), ('thing--a', 1), ('"\'wandsworth', 1), ('camp,', 1), ('bhurtee,', 1), ('opponent', 1), ('fog,"', 1), ('release,', 1), ('exposure!', 1), ('wife!', 1), ('aright', 1), ('shapes', 1), ('tailing', 1), ('over-mastering', 1), ('intention?', 1), ('this"--.', 1), ('capricious--that', 1), ('thumb,"', 1), ('lifted.', 1), ('bubbling', 1), ('bannister."', 1), ('unrolling', 1), ('nights."', 1), ("this?'", 1), ('foxes', 1), ('hopley', 1), ('sauntering', 1), ('millar', 1), ('remington', 1), ('this--a', 1), ('able--but', 1), ('"\'good!', 1), ('entitles', 1), ('smoked,"', 1), ('"precisely,"', 1), ('accountant,"', 1), ('coat-tails."', 1), ('freer,', 1), ("touts!'", 1), ('oaks', 1), ('conjuring', 1), ('cutter', 1), ('"check', 1), ('trip--only', 1), ('corn-chandler.', 1), ('novel.', 1), ('degree.', 1), ('unravelling', 1), ('rang?"', 1), ('glass-factories', 1), ('wine-cellar."', 1), ('continuously,', 1), ('railway.', 1), ('copying.', 1), ('softened', 1), ('listening.', 1), ('rasped', 1), ('spoils', 1), ("waitin'", 1), ('printer."', 1), ('begin,"', 1), ('"human', 1), ('consultant,"', 1), ('shake,', 1), ('election,', 1), ('stored.', 1), ('typewritten,"', 1), ('alternative,"', 1), ('deserving', 1), ('sharp.', 1), ('officers.', 1), ('through,"', 1), ('"murdered?"', 1), ('bunsen', 1), ('rocks.', 1), ('grazier', 1), ('mexborough', 1), ('blinked,', 1), ('customer."', 1), ('accomplished;', 1), ('serpent.', 1), ('passes."', 1), ('pounds?', 1), ('adorned."', 1), ('forward."', 1), ('swagger,', 1), ('strips.', 1), ('surprisingly', 1), ('fever,', 1), ('giggling,', 1), ('intimately,', 1), ('fact,"', 1), ("'well", 1), ('faber', 1), ('landed,', 1), ('"eglow,', 1), ('inexcusable', 1), ('"\'ku', 1), ('nails,', 1), ('fearing', 1), ('packages.', 1), ('extras,', 1), ('faced,', 1), ('injections,', 1), ('sheep-pens?"', 1), ('scott_', 1), ('vatican', 1), ('inconceivable,', 1), ('mid-day', 1), ('succeeded;', 1), ('brier-root', 1), ('disposal!"', 1), ('petered', 1), ('rat-tat', 1), ('attempted.', 1), ('earth----"', 1), ('pocketed', 1), ('seen--"', 1), ('lexington', 1), ('what.', 1), ('manchester', 1), ('blotting-pad.', 1), ('depose', 1), ('chance;', 1), ('shoulder-high', 1), ('fact--from', 1), ('switzerland', 1), ('suppresses', 1), ('dare-devil', 1), ('fascinates', 1), ('planked', 1), ('wreck.', 1), ('historical', 1), ("papers?'", 1), ('invalid,', 1), ('expert,"', 1), ('star."', 1), ('across,"', 1), ('she?', 1), ('true;', 1), ('displacement', 1), ('thereby', 1), ('murderer?"', 1), ('farmers.', 1), ('displaces', 1), ('ignored.', 1), ('"up', 1), ('"\'oh!', 1), ('forms?', 1), ('wafer', 1), ('"\'lord', 1), ('protest.', 1), ("miss?'", 1), ('terrible--a', 1), ('addleton', 1), ('magnum', 1), ('wicket-gate?"', 1), ('gown.', 1), ('chuckling', 1), ('beds,', 1), ('locks', 1), ('convict-ships,', 1), ('embalm', 1), ('1895,', 1), ('deer', 1), ('"whether', 1), ('try."', 1), ('cross-indexing', 1), ('beacons', 1), ('swelling', 1), ('stuff', 1), ('tents,', 1), ("gordon's", 1), ('served.', 1), ('wine-glasses,', 1), ('lectures', 1), ('sickened', 1), ('wrenched', 1), ('change?"', 1), ('pompey!', 1), ('tables', 1), ('therein', 1), ('understand--that', 1), ('skein,', 1), ('"\'pray,', 1), ('two."', 1), ('athletes', 1), ('upwards', 1), ("stags'", 1), ('upwood', 1), ('imported', 1), ("been?'", 1), ('sundials', 1), ('girl--for', 1), ('unreasonable', 1), ('coward!', 1), ('disfigured', 1), ('staples.', 1), ('searching.', 1), ('pâté', 1), ('america?"', 1), ('mercury', 1), ('profits', 1), ('addicted', 1), ('england--slim,', 1), ('semi-military', 1), ('asleep.', 1), ('reassuring.', 1), ('provinces', 1), ('attraction', 1), ('marks?"', 1), ('rails,', 1), ('phantom', 1), ('g', 1), ("imagine,'", 1), ('amongst', 1), ('sixty;', 1), ('repeatedly', 1), ('extremely,"', 1), ('liberties', 1), ('tell-tale', 1), ('suggest.', 1), ('"\'well', 1), ('"london', 1), ('slumbers', 1), ('"\'may', 1), ('top-knot.', 1), ('pigments', 1), ('york.', 1), ('snick', 1), ("'twelve'", 1), ('reconnaissance', 1), ('ex-president', 1), ('rapidity', 1), ('engaged?"', 1), ('cross-legged', 1), ("this,'", 1), ('cigar."', 1), ('bruises.', 1), ('mother?', 1), ('bereavement,', 1), ('silly', 1), ('vintage.', 1), ('nervous.', 1), ('death,"', 1), ('sparest,', 1), ('ill-natured', 1), ('"noticed', 1), ('acetones,', 1), ('donations', 1), ('sombre,', 1), ('note-books', 1), ('alexander', 1), ('3:30', 1), ('waste,', 1), ('soar', 1), ('existence."', 1), ('dilemma.', 1), ('affectionate.', 1), ('furiously,', 1), ('brownish', 1), ('climate.', 1), ('gestures.', 1), ('2704,"', 1), ('opium?"', 1), ('immediately,', 1), ('mechanical', 1), ('under."\'', 1), ('bleaker', 1), ('family----"', 1), ('footstep!', 1), ('trail?"', 1), ('varnished.', 1), ('naturally.', 1), ('all-important.', 1), ('me--seemed', 1), ('fixed.', 1), ('"blood."', 1), ('thumb-marks', 1), ('matches,', 1), ('heinous.', 1), ('steamers', 1), ("sort.'", 1), ('vehemence.', 1), ('jerkily,', 1), ('holdernesse,', 1), ('clapping', 1), ('observer--excellent', 1), ('eaves', 1), ('farthing', 1), ('meshes."', 1), ('degenerating', 1), ('half-witted,', 1), ('terribly;', 1), ('assailants;', 1), ('"never,"', 1), ("nature's", 1), ('ward,', 1), ('east,"', 1), ('player', 1), ('yesterday--like', 1), ('derision', 1), ('eerie', 1), ('drink--with', 1), ('friendly?"', 1), ('intelligent-looking,', 1), ('genius,', 1), ('illness,"', 1), ('lord,"', 1), ('feat', 1), ('"indeed!"', 1), ('realize.', 1), ('forthwith,', 1), ('musgrave,"', 1), ('pre-eminent', 1), ('"\'"hullo,', 1), ('accompli?"', 1), ('anticipation.', 1), ('left;', 1), ('constitution,', 1), ('calhoun,', 1), ('pony.', 1), ('sell.', 1), ('ancient,', 1), ('grasses', 1), ('rags,"', 1), ('pane,"', 1), ('delusions,', 1), ('mariners', 1), ('minerals', 1), ('tinned', 1), ('madness,', 1), ('bush?"', 1), ('reporting', 1), ('7s.', 1), ('hill!"', 1), ('beloved', 1), ('letter--for', 1), ('westmoreland."', 1), ('telltale', 1), ('"aha!', 1), ('withholding', 1), ('sighted', 1), ('slate,', 1), ('want?', 1), ('acquaintance?"', 1), ('compliments,', 1), ('slater,', 1), ('disc', 1), ('click.', 1), ("heavier,'", 1), ('pack.\'"', 1), ('amplifying', 1), ('heavily-lintelled', 1), ('matter;', 1), ('hands--"i', 1), ('conservative', 1), ('demeanour', 1), ('suppose?', 1), ('encouraged,', 1), ('thinker.', 1), ('rockies,', 1), ('reward;', 1), ('confederate--and', 1), ('blinds.', 1), ('yard,"', 1), ('extremity.', 1), ('police-inspector,', 1), ('mean-looking,', 1), ('beak,', 1), ('post-mark', 1), ('paste--"', 1), ('skill,', 1), ('superior,', 1), ('candid.', 1), ('hand-bag.', 1), ("promise.'", 1), ('eye?"', 1), ('tried,"', 1), ('police-court,', 1), ('execute.', 1), ('egotism', 1), ('sikhs,', 1), ('piece."', 1), ('formulating', 1), ('rat-gutted,', 1), ('pollock', 1), ('ridge,', 1), ('office?', 1), ('speculating,', 1), ('"missing,"', 1), ('operating', 1), ('enjoyed.', 1), ('munro.', 1), ('apologize,', 1), ('flaubert', 1), ('mire,"', 1), ('draghounds--no', 1), ('interjected', 1), ('well-to-do.', 1), ('cross-purposes,', 1), ('wilson?', 1), ('shouts', 1), ('archways', 1), ('soothingly,', 1), ('persia,', 1), ('ignore', 1), ('holder?', 1), ("another,'", 1), ('pre-existing', 1), ('unthinkable.', 1), ('proprieties', 1), ('gesture.', 1), ('cracked.', 1), ('uncompromising', 1), ('byways', 1), ('choose,', 1), ('plank,', 1), ('distaff', 1), ('inn,"', 1), ('estimable', 1), ("newton's", 1), ('foulest', 1), ('commoner,', 1), ('dandled', 1), ('paddling', 1), ('strange."', 1), ('plough', 1), ('celebrities', 1), ('pavement?"', 1), ('polished.', 1), ('"t"', 1), ('bankers,"', 1), ('dignified', 1), ('twenty-five.', 1), ('camp-bed,', 1), ('artist,', 1), ('ambitions', 1), ('birmingham.', 1), ('repentance', 1), ('b.,', 1), ("hart's-tongue", 1), ('1887.', 1), ('baronet--it', 1), ('resting,', 1), ('whirls,"', 1), ('nos.', 1), ('sense.', 1), ('self-respect--everything.', 1), ('acquaintance,"', 1), ('useless.', 1), ('depending', 1), ('imply', 1), ('smoking,', 1), ('provocation', 1), ('slightly,', 1), ('playful', 1), ('goes,"', 1), ('fraying', 1), ('said--and', 1), ('"into', 1), ('trimmings.', 1), ('high-power', 1), ("'hosmer", 1), ('menaced', 1), ('fore-finger,', 1), ('crumbled', 1), ('jail--once', 1), ("true.'", 1), ('twisted."', 1), ('glove.', 1), ('swedish', 1), ('banquet,', 1), ('carpenter."', 1), ('"1742."', 1), ('presents."', 1), ('"seen', 1), ('dweller', 1), ('hospital."', 1), ("staunton--you've", 1), ('over-confident', 1), ('gale."', 1), ('accepting', 1), ('older.', 1), ('much-tried', 1), ('indeed--the', 1), ('possibly!"', 1), ('thoroughfare,', 1), ('span', 1), ('incidental', 1), ('accustomed.', 1), ("'they", 1), ('bowing.', 1), ('manage,', 1), ('ignominious', 1), ('vengeance,', 1), ('riding-crop', 1), ("lover's", 1), ('whose,', 1), ('distilled', 1), ('lancaster,', 1), ('masters,', 1), ('decorators', 1), ('bell!"', 1), ('pope--down', 1), ('illustration', 1), ('admirer', 1), ('rain.', 1), ('sticky', 1), ('me!--but', 1), ('idea."', 1), ('langham', 1), ('chances.', 1), ('water-tight', 1), ('promised,"', 1), ('insistent', 1), ('birmingham,', 1), ('relationship', 1), ("'83.", 1), ('valour,', 1), ('regiments,', 1), ('self-possession', 1), ('pitiful?', 1), ('discharge,', 1), ('bar,', 1), ('impossibility', 1), ('vehemence,', 1), ('holmes--absolutely', 1), ('"\'d\'you', 1), ('stick?', 1), ('joseph--the', 1), ('hire', 1), ('wed', 1), ('burning,', 1), ('skylights', 1), ('harpoons.', 1), ('steal,"', 1), ('shade.', 1), ('devotedly,', 1), ('intuitions,', 1), ('abyss?"', 1), ('valuables', 1), ('axe.', 1), ('africa--a', 1), ('1/2', 1), ('"done', 1), ('deep-sea', 1), ('conspire', 1), ('collapsed,', 1), ('cross-examine', 1), ('leathers,', 1), ('name--elsie', 1), ('beppo.', 1), ('prior', 1), ('jail.', 1), ('holmes.\'"', 1), ('appeal."', 1), ('embarrassment;', 1), ('army.', 1), ('"\'"gone!', 1), ('oily', 1), ('limb,', 1), ('meddle."', 1), ('gratitude,', 1), ("in,'", 1), ('hand!"', 1), ('church-clock', 1), ('decanters', 1), ('prophecy', 1), ('fact?"', 1), ('gibe', 1), ('delicious.', 1), ('commenting', 1), ('stout-built,', 1), ('fittings,', 1), ('mythical', 1), ('possess.', 1), ('broadish', 1), ('assailant,', 1), ('broads,', 1), ('proving', 1), ("zealand.'", 1), ('propagation', 1), ('prosecuted', 1), ('acquiescence.', 1), ("false?'", 1), ('bleat', 1), ('trudge', 1), ('start!"', 1), ('wheal', 1), ('clue;', 1), ('consideration.', 1), ('up-to-date', 1), ('based', 1), ('barbed-headed', 1), ('expressions', 1), ('revenge.', 1), ('idleness', 1), ('deadened', 1), ('week--i', 1), ('went;', 1), ('wales,', 1), ('war?"', 1), ('emergencies."', 1), ('huxtable.', 1), ('simpler,', 1), ("carston'--dear", 1), ('classified', 1), ('trimly', 1), ('unarmed', 1), ('eggs,"', 1), ('jaunty', 1), ('entirely.', 1), ('coupled', 1), ('more,"', 1), ('armed?', 1), ('consigned', 1), ('chain:', 1), ('"march,', 1), ('vices,', 1), ('pedal', 1), ('pathway.', 1), ('comments', 1), ('accordingly', 1), ('"\'these', 1), ('henry?', 1), ('defiers.', 1), ('cousins.', 1), ('persistence', 1), ('cross-country', 1), ('blacksmith', 1), ('rough-and-tumble', 1), ('watson--very', 1), ('idea!', 1), ('unnaturally', 1), ('sponge,', 1), ('introspective,', 1), ('beryl?"', 1), ('dimmed', 1), ('stratagem', 1), ('commons', 1), ('artist.', 1), ('tuson,', 1), ('butter', 1), ('foundation', 1), ('twitching.', 1), ('blade.', 1), ('lamb,', 1), ('social,', 1), ('classic.', 1), ('over;', 1), ('chestnuts.', 1), ('benefactor,', 1), ('aperture.', 1), ('asks.', 1), ('lodge-gates,', 1), ('advanced,', 1), ('that--eh?"', 1), ('far-gone', 1), ('knocks', 1), ('preposterous,', 1), ('dismissed,', 1), ('scientist', 1), ('sufferer', 1), ('health,"', 1), ('causes.', 1), ('diggings', 1), ('pugilist.', 1), ('half-comical', 1), ('emblem', 1), ('chair?"', 1), ("'tell", 1), ('preposterous!"', 1), ('probing', 1), ('uniformly', 1), ('apartment."', 1), ('forbidden', 1), ('ruston,', 1), ('wagonette,', 1), ('distractedly,', 1), ('tourist', 1), ('sapper.', 1), ('here--you', 1), ('1883--a', 1), ('defiance', 1), ('writing!"', 1), ('marching', 1), ('room--one,', 1), ('canal', 1), ('corroborative', 1), ('trigonometry,', 1), ('"welcome,', 1), ('camel', 1), ('toronto,"', 1), ('pheasant,', 1), ("smart!'", 1), ('pooh!', 1), ('scuffling', 1), ('momentum,', 1), ('dummy', 1), ('occurrence.', 1), ('self-lighting.', 1), ('views."', 1), ('equal,"', 1), ('doubting."', 1), ('reserved,', 1), ('inclusive,', 1), ('so-precious', 1), ('keeping.', 1), ('sedative.', 1), ('apple.', 1), ('excited."', 1), ('seventy-five', 1), ('corpulent,', 1), ('blessington,"', 1), ('golden-moustached,', 1), ('visitors,', 1), ("into.'", 1), ('jewel,', 1), ('lyons--her', 1), ("'norbury'", 1), ('mitigating', 1), ("men?'", 1), ('warmly."', 1), ('turn,"', 1), ('stimulus,', 1), ('1883', 1), ('childless,', 1), ('ascending', 1), ('hear,"', 1), ('discolourations,', 1), ('novo', 1), ('girls', 1), ('chapel.', 1), ("williams's.", 1), ('powerless', 1), ('ounce,"', 1), ('"\'within', 1), ('diligence', 1), ('forger,"', 1), ('retreating', 1), ('dark-lantern', 1), ('graciously', 1), ('bonnet.', 1), ('cleaver,"', 1), ('asleep,"', 1), ('thankful,', 1), ('effigy', 1), ('burrowing.', 1), ('room--you', 1), ('occasion!"', 1), ('grotesque,"', 1), ('bracket,', 1), ('educations,', 1), ('transportation.', 1), ("'in", 1), ('perish', 1), ('dangers,', 1), ('court-martial.', 1), ('reckless,', 1), ('rejoined', 1), ('half-column', 1), ('wears', 1), ('repute,', 1), ('price?"', 1), ('s.', 1), ('unofficial,', 1), ('comradeship', 1), ('princetown.', 1), ("'95.", 1), ('correct--this', 1), ('doubt."', 1), ('solicitors--they', 1), ('influenced', 1), ('dacre', 1), ('reality', 1), ('selection,', 1), ('shingle', 1), ('concert', 1), ('splendidly.', 1), ('thanks,', 1), ('autobiography', 1), ('been!', 1), ('princess,', 1), ('lisp', 1), ('prank.', 1), ('at?', 1), ('loss.', 1), ('resignation', 1), ('bundle--the', 1), ('"obviously', 1), ('heathy', 1), ('"indirectly', 1), ('campden', 1), ('florid', 1), ('survive', 1), ('honey', 1), ('material."', 1), ('avidity', 1), ('disc.', 1), ('winds.', 1), ('who?', 1), ('keyhole."', 1), ('latch,', 1), ('signed,', 1), ('premises."', 1), ('caravan.', 1), ('retreat,"', 1), ('numerical', 1), ('concocted."', 1), ("right,'", 1), ('union."', 1), ('port,"', 1), ('finish,', 1), ("doctor's--general", 1), ('interfere,', 1), ('bullying,', 1), ('fore-foot', 1), ('undiscovered', 1), ('wood-stack,', 1), ('widow,', 1), ('margins', 1), ('declined,', 1), ('tumultuous', 1), ('hangings,', 1), ('tinder,', 1), ('gospel,', 1), ('traveler', 1), ('date?"', 1), ('trout', 1), ('unreservedly', 1), ('road--249,"', 1), ('decide,"', 1), ('preparations,', 1), ('tor?', 1), ('dispense', 1), ('scandal,"', 1), ('smears', 1), ('heavens', 1), ('transparent', 1), ('"important!"', 1), ('winking', 1), ('state-room,', 1), ('lighten,', 1), ('erred', 1), ('_hotspur_', 1), ('ring?', 1), ('article."', 1), ('encourages', 1), ('space.', 1), ('uncle\'s."', 1), ('calf,', 1), ('door-key.', 1), ('character--dummy', 1), ('"already?"', 1), ('mantle,', 1), ('spelling', 1), ('arrears', 1), ('moor!"', 1), ('sacrilege,', 1), ('bisulphate', 1), ('neutral-tinted', 1), ('pasture', 1), ('bags?', 1), ('instant!"', 1), ('shift', 1), ('reads', 1), ('afoot.', 1), ('smithy,"', 1), ('stolidly', 1), ("writing?'", 1), ('mends,', 1), ('entertaining', 1), ("seven-eighths.'", 1), ('"convinced', 1), ('ejaculated,', 1), ('strips', 1), ('miners,', 1), ('remunerative', 1), ('year--which', 1), ('ground?"', 1), ('terse,', 1), ("we'd", 1), ('lonelier', 1), ('deformity;', 1), ('precise,', 1), ('"evidently,"', 1), ('respects.', 1), ('treaty,"', 1), ('vast,', 1), ('universities', 1), ('disgraceful,', 1), ('bicycling.', 1), ("'baron", 1), ('spear-heads', 1), ('sacrificed', 1), ('loafer', 1), ('tosca--an', 1), ('guilty--if', 1), ('men."', 1), ('catullus,', 1), ('fear.', 1), ('compositor', 1), ('disfavour', 1), ('newspapers.', 1), ('explicit,"', 1), ('accentuated;', 1), ("fuller's-earth,'", 1), ('result,"', 1), ('well-opened', 1), ('defenders', 1), ('"\'absolutely.\'', 1), ('grandly', 1), ('baxter,', 1), ('planning,', 1), ('coherently.', 1), ('probability.', 1), ('box--his', 1), ('anglia.', 1), ('though!', 1), ('suppressing', 1), ('wright--there', 1), ('don', 1), ('"naval', 1), ('mouths.', 1), ('viciousness', 1), ('tints', 1), ('"late', 1), ('summer-time,', 1), ('dukes--was', 1), ('entertainment', 1), ('was--had', 1), ('reader.', 1), ('run?', 1), ('bronzing', 1), ('racked', 1), ('scott!"', 1), ('having.', 1), ('bristol?', 1), ('crushed,', 1), ('to-day?"', 1), ('fellow--nothing', 1), ('able,', 1), ("eh?'", 1), ('applied.', 1), ('"\'never', 1), ('ferrier,', 1), ('latch.', 1), ('game--you', 1), ('back?', 1), ('communal', 1), ('images', 1), ('one--while', 1), ("reversion?'", 1), ('herder', 1), ('title-deeds,', 1), ('particle', 1), ('presumably--since', 1), ('burned.', 1), ('bordeaux,', 1), ('live,"', 1), ('m.a.,', 1), ('incognito', 1), ('above,"', 1), ('trap-door,', 1), ('veteran,', 1), ('wishes----"', 1), ('"enormous."', 1), ('johann', 1), ('"stolen,', 1), ('uniform', 1), ('secretive,', 1), ('push,', 1), ('devil.', 1), ('ate.', 1), ('queerly,', 1), ('hairs', 1), ('all--but', 1), ('manuscript,', 1), ('nonsense', 1), ('sensationalism', 1), ('nepaul', 1), ('seven-thirty.', 1), ('surveying', 1), ('half-frightened,', 1), ('faster', 1), ('clicked', 1), ('lash.', 1), ('duns', 1), ('which.', 1), ('ingenuity.', 1), ('hollow!"', 1), ("jove!'", 1), ('conviction.', 1), ('commits', 1), ('interfere?"', 1), ('surprises', 1), ('cowered.', 1), ('connected.', 1), ('meadows,', 1), ('blockaded', 1), ('peaked', 1), ('gangs', 1), ('afoot?"', 1), ('bred,"', 1), ('toys', 1), ('presence--tall,', 1), ('hayes?"', 1), ('it--if', 1), ('lobster', 1), ('audible--a', 1), ('legible.', 1), ('shrilly--a', 1), ('nurse--taciturn,', 1), ('bare,', 1), ('really!"', 1), ('"go!', 1), ('step?"', 1), ('wineglasses."', 1), ('flamed.', 1), ("or--'", 1), ('poetry.', 1), ('mereer,', 1), ('flipper', 1), ('minutes!', 1), ('superscription', 1), ('stay,"', 1), ('sluggishly', 1), ('meshes.', 1), ('inexorably', 1), ('lurking."', 1), ('wrings', 1), ('loafing', 1), ('outlay,', 1), ('amassing', 1), ('solidity.', 1), ('historian.', 1), ('slane.', 1), ('dinner--he', 1), ('270', 1), ('strongly-marked', 1), ('capital!', 1), ('prices,', 1), ('woman\'s."', 1), ("regent's", 1), ('calmly', 1), ('elucidate', 1), ('animals,', 1), ('during,', 1), ("wrong--i'll", 1), ('stevenson,', 1), ('insensibly', 1), ('curly-brimmed', 1), ("oak.'", 1), ("stolen?'", 1), ('exam,', 1), ('fatigued', 1), ('left,"', 1), ('moulton.', 1), ('corkscrew.', 1), ('afghanistan', 1), ('looking."', 1), ('seas', 1), ('dress--he', 1), ('jauntily', 1), ('complimentary', 1), ('peg!', 1), ('slimy', 1), ('in--queer,', 1), ('those,', 1), ('handy,', 1), ('ammonia', 1), ('persistence.', 1), ("wife's,", 1), ('"sophy', 1), ('get--and', 1), ('exclude', 1), ('chunks', 1), ('morbidly', 1), ('carotid', 1), ('accused,', 1), ('grayish', 1), ('bare-headed', 1), ('norah', 1), ('oversight,', 1), ('mustache.', 1), ('repassed', 1), ('underside', 1), ('effect?"', 1), ('feeble."', 1), ('hall!"', 1), ('cricket', 1), ('holdernesse.', 1), ('bermondsey,', 1), ('since--not', 1), ('warmed', 1), ('pistol!', 1), ('noble.', 1), ('short-handed', 1), ('settees,', 1), ('formidable-looking', 1), ('surgical', 1), ('"impossible,"', 1), ('"keep', 1), ('oppressively', 1), ('well-chosen', 1), ('fulfil', 1), ('murder,"', 1), ('lameness?"', 1), ('lads.', 1), ('matter?', 1), ('bribed', 1), ('compose', 1), ('abductor', 1), ('inaction.', 1), ('bludgeon-man', 1), ('impressive.', 1), ('moriarty?"', 1), ('shockingly', 1), ('dead!', 1), ('cable,', 1), ("wrong--it's", 1), ('cambridgeshire', 1), ('gout,', 1), ('starving,', 1), ('sweeps', 1), ('"admirable!"', 1), ('silvering', 1), ('hilda!"', 1), ('somebody,', 1), ('6th', 1), ('figure."', 1), ("henry's--the", 1), ('love-locks,', 1), ('highness', 1), ('ill-service', 1), ('"return', 1), ("mistress's", 1), ('punjab,', 1), ("'mrs.", 1), ('restored----"', 1), ("scarlet,'", 1), ('culprit.', 1), ('mood."', 1), ('stoniest', 1), ('companionship', 1), ('sherry.', 1), ('attentions,', 1), ('hill."', 1), ('include', 1), ('examined."', 1), ('furze-bush.', 1), ("stoper.'", 1), ('until,', 1), ('arabian', 1), ('glance,', 1), ('go?', 1), ('freemasonry', 1), ("admirably.'", 1), ('hit,', 1), ('blood-stain.', 1), ('distracting', 1), ('sailing-ship', 1), ('cards,', 1), ('reappeared.', 1), ('induced', 1), ('elegance', 1), ('psychologists', 1), ('desertion.', 1), ('blindly', 1), ('"nursed', 1), ('safety?', 1), ("8d.'", 1), ("davenport.'", 1), ('arnsworth', 1), ('open-eyed,', 1), ('drying', 1), ('electrician', 1), ('humouredly.', 1), ('entering.', 1), ('dissolute', 1), ('midland', 1), ('variable.', 1), ('defect', 1), ('chamber-maid', 1), ('destructive', 1), ('funds."', 1), ('well-nurtured', 1), ('concentrated.', 1), ('wonder!', 1), ('noticeable', 1), ('seaport', 1), ('"might', 1), ('retrogression,', 1), ('indistinct', 1), ('leave?"', 1), ('unrivalled?"', 1), ('comrade.', 1), ('twin', 1), ('digestion,"', 1), ('indoor', 1), ('neutral?"', 1), ('confounded', 1), ('friendships', 1), ('inhaling', 1), ('it--?"', 1), ('busybody.', 1), ('drama?', 1), ('features?', 1), ('goings-on,', 1), ('snarls.', 1), ('quest."', 1), ('plymouth', 1), ('negotiate', 1), ('instant?"', 1), ('pedalled', 1), ('"head-keeper', 1), ('"arthur', 1), ('wriggle', 1), ('traveled,', 1), ('lie?"', 1), ('apologies,', 1), ('opalescent', 1), ('secretary?"', 1), ('10s.,', 1), ('else,"', 1), ('listless,', 1), ('obedience;', 1), ('unselfish', 1), ('principles', 1), ('cushioned', 1), ('supply."', 1), ('conservatory', 1), ('holmes--nothing', 1), ('waylaid', 1), ('"enough', 1), ('constancy.', 1), ('realm', 1), ('unaware', 1), ('foppish,', 1), ('harsh.', 1), ('sunbeam', 1), ('crack,', 1), ('pardon', 1), ('good-humour', 1), ('inquirer', 1), ('modified,', 1), ('winning.', 1), ('untidy', 1), ('clasp-knife', 1), ('observer.', 1), ('belonged,', 1), ('pinching', 1), ("hills?'", 1), ('pistol,"', 1), ('prison?', 1), ('indecision,', 1), ('carnivorous."', 1), ('husband."', 1), ('carelessly,', 1), ('bakers,', 1), ("police!'", 1), ('braces', 1), ('needed,', 1), ('confederates,', 1), ('platz,', 1), ('calling,', 1), ('ransack', 1), ('breeding.', 1), ('good--too', 1), ('protecting', 1), ('nook.', 1), ('bust."', 1), ('"frank', 1), ('huguenot', 1), ('dawn,', 1), ('crime--a', 1), ('before-breakfast', 1), ('parting', 1), ('greeting,', 1), ('sheltering', 1), ('receipts,', 1), ('smoke-rocket', 1), ('secreting.', 1), ('differ.', 1), ('drink?"', 1), ('swarmed', 1), ('pipe-rack', 1), ('unacquainted', 1), ('probably,', 1), ('brunette', 1), ("fashion,'", 1), ('standard.', 1), ('indoors.', 1), ('firing,', 1), ('above,', 1), ('crate', 1), ('commoners,', 1), ('anaemic', 1), ('ordained,"', 1), ("afterwards,'", 1), ('whereby', 1), ('trifle,"', 1), ('glare."', 1), ('exposure."', 1), ('postmark.', 1), ('brightened.', 1), ('slinging', 1), ('lad,"', 1), ('coincided', 1), ('nova', 1), ("youth.'", 1), ('fiancee--says', 1), ('alicia', 1), ('unchallenged."', 1), ('deluged--the', 1), ('up?--thank', 1), ('"\'north', 1), ('inches.', 1), ('adviser', 1), ('doorstep."', 1), ('happy,"', 1), ('excellent.', 1), ("hotel.'", 1), ('snap.', 1), ('trousers?', 1), ('sunbaked', 1), ('profusion,', 1), ('dot,', 1), ('probability--is', 1), ('whisk', 1), ("soul.'", 1), ('vain,"', 1), ('it--these', 1), ('ill-nourished.', 1), ('register?"', 1), ('"h.', 1), ('butcher\'s?"', 1), ('maltreated', 1), ('hers', 1), ('grip,', 1), ('ugly,', 1), ('bible.', 1), ('loose-box', 1), ('illuminated.', 1), ('impresses', 1), ('disgust,', 1), ('"madam,', 1), ("acton's.", 1), ('unexplored."', 1), ('consumed.', 1), ("chicken's,", 1), ('(now', 1), ('precision', 1), ('woods.', 1), ('daytime.', 1), ('discount,', 1), ('long-cut', 1), ('exuberant', 1), ('ostlers', 1), ('ringed', 1), ('parlance', 1), ('intellectual?"', 1), ('metropolis', 1), ('ascend.', 1), ('pasty', 1), ('together;', 1), ('toff,', 1), ('impunity', 1), ('dissolved', 1), ('patients,', 1), ('intermittent,', 1), ('acceding', 1), ('euston."', 1), ('unusual,', 1), ('"exactly!', 1), ('darkened', 1), ('high-angled', 1), ('oporto.', 1), ("paul's", 1), ('preach', 1), ('undone', 1), ('expeditions', 1), ('upper.', 1), ('reddish-brown', 1), ("'84,", 1), ('girl!', 1), ('sunk,', 1), ('beverley,', 1), ('australians.', 1), ('indefatigable.', 1), ('meek-mannered', 1), ('coincidences,', 1), ('nothing!"', 1), ('compressed,', 1), ('date--to', 1), ('wither', 1), ('clara', 1), ('spirits?', 1), ('time;', 1), ('refuges', 1), ('servitude.', 1), ('apple', 1), ("ours,'", 1), ('concisely', 1), ("neill's", 1), ('sobered', 1), ('straker,"', 1), ('engineer.', 1), ('right-handed,', 1), ('overheard?"', 1), ('"data!', 1), ('effected', 1), ('colony.', 1), ('90', 1), ('cripple,', 1), ('suspicions?"', 1), ('evoked', 1), ('quench', 1), ("stamford's", 1), ('medicine', 1), ('wood-work', 1), ('charters--researches', 1), ('brig', 1), ('away?"', 1), ('clues,', 1), ('town,"', 1), ('we,', 1), ('organizing', 1), ('bit!', 1), ('prisoner,"', 1), ('fissure?', 1), ('irrelevant,', 1), ('confederate."', 1), ('flying,', 1), ('weights', 1), ('hardest', 1), ('school-fellow,', 1), ('stiff,', 1), ('pawing', 1), ('"seeing', 1), ('butted', 1), ('tying', 1), ('freezing', 1), ('biographer', 1), ('spectacle.', 1), ('conveyed.', 1), ('approached."', 1), ("shouldn't,", 1), ('drawing?"', 1), ('octavo', 1), ('lifetime', 1), ('lake.', 1), ('transfix', 1), ('unannounced', 1), ('obliquity', 1), ('lookout', 1), ('punishment."', 1), ('beech,', 1), ('hot-blooded', 1), ('1882', 1), ('eggs', 1), ('oriental', 1), ('recognize,', 1), ('saying.', 1), ('"\'jack,\'', 1), ('alton.', 1), ('shivers', 1), ('merit.', 1), ('smudged', 1), ('work;', 1), ('fellow!', 1), ('standpoint."', 1), ('"farintosh,"', 1), ('influence.', 1), ('richness', 1), ('jury?"', 1), ('boot.', 1), ('story?', 1), ('"deserted', 1), ('threads,', 1), ('companion!"', 1), ('particular?"', 1), ('appealing', 1), ('expert,', 1), ('mouthpieces', 1), ('suspicion;', 1), ('garden-hedge', 1), ('docketing', 1), ('brass-work', 1), ('unfailingly', 1), ('bathroom,"', 1), ('mouse."', 1), ('perversion', 1), ('house-physician--little', 1), ('screams,', 1), ('firs,', 1), ('sapped', 1), ('posts', 1), ('whistled,', 1), ('splendid,', 1), ('flippantly,', 1), ('coppers.', 1), ('collapse.', 1), ('bawling', 1), ('voyage.', 1), ('bloodstains', 1), ('grandparents', 1), ('bannister--a', 1), ('nucleus,', 1), ('typewrite', 1), ('"\'stolen!\'', 1), ('sovereign.', 1), ('enterprise', 1), ('watson--an', 1), ('munsters,', 1), ('"\'"and', 1), ('pucker,', 1), ('cruel,', 1), ('plight', 1), ("absent.'", 1), ('injunctions,', 1), ('affected."', 1), ('country-houses.', 1), ('diamond', 1), ('ill-trimmed', 1), ('lick!', 1), ('1858.', 1), ('assented,', 1), ('scientifically', 1), ('6:30--c.a.m.,"', 1), ('togs', 1), ('malignancy', 1), ('accumulating,"', 1), ('brawl', 1), ('sand."', 1), ('country--in', 1), ('intrusions', 1), ('exhausted.', 1), ("'c.p.r.'", 1), ('homesteads?"', 1), ('gambler', 1), ('wont,', 1), ('his."', 1), ('discreetly', 1), ('incomprehensible', 1), ('31', 1), ('"tobacco', 1), ('venezuelan', 1), ('revellers.', 1), ('suspense.', 1), ('boone--the', 1), ('sailed', 1), ('stops,', 1), ('silencing', 1), ('dull.', 1), ('increase', 1), ('things--mere', 1), ('undeceived?"', 1), ('vibrating', 1), ('stoop', 1), ('discouraged,', 1), ('communication.', 1), ('confirmation.', 1), ('resistance,', 1), ('centuries,', 1), ("know?'", 1), ('counterfeited', 1), ('victoria."', 1), ('maiden,"', 1), ('letter,"', 1), ('heart--and', 1), ('breast-pocket.', 1), ('indistinguishable.', 1), ('skirt,', 1), ('afghans.', 1), ('devoting', 1), ('inferred', 1), ('innate', 1), ('peals', 1), ('jack?', 1), ('lines."', 1), ('"when?"', 1), ('effie,', 1), ('civilian', 1), ('impossibility,', 1), ('foretold,', 1), ('excite,', 1), ('"what?"', 1), ('compass', 1), ('ebony', 1), ('noir', 1), ('menace', 1), ('verified', 1), ('attack.', 1), ('cock.', 1), ('cairns."', 1), ('implicitly', 1), ('irrevocable', 1), ('wild-duck', 1), ('lies.', 1), ('nothing!', 1), ('switzerland,', 1), ('"bite', 1), ('floor?"', 1), ('eight-and-forty', 1), ('sailor-fashion,', 1), ('shod--old', 1), ('scarlet', 1), ('prey', 1), ('unaffectedly,', 1), ('plunder.', 1), ('smoking."', 1), ('tweeds,', 1), ('somebody.', 1), ('farmhouse', 1), ('plunge', 1), ('safe."', 1), ('peace-offering', 1), ("sentence--'this", 1), ('adapt', 1), ('treat.', 1), ('wave,', 1), ('despondent.', 1), ('merriment;', 1), ('sussex.', 1), ('combinations', 1), ('plan."', 1), ('perhaps--"', 1), ('thickness.', 1), ('"you--you', 1), ('checks.', 1), ('dense,', 1), ('convex', 1), ('write?', 1), ('thinness.', 1), ('"\'nothing.', 1), ('appointment?"', 1), ('jealously,', 1), ('lighted?"', 1), ('unfortunate,', 1), ('hebron.', 1), ('fancy."', 1), ('liverpool.', 1), ('complex,', 1), ('captain."', 1), ('mild', 1), ('hiding-place?"', 1), ('clang.', 1), ('wardrobe.', 1), ('coram.', 1), ("name,'", 1), ('extinguished,', 1), ("dying,'", 1), ('scent."', 1), ('bowlder', 1), ("coxon's,", 1), ('demands', 1), ('existed,', 1), ('libraries.', 1), ('killed.', 1), ('pad', 1), ('maritime', 1), ('lioness.', 1), ('slighted', 1), ('david,', 1), ('complaint.', 1), ('funny.', 1), ('furnishers', 1), ('solve,"', 1), ("murmured--'it", 1), ("still,'", 1), ('which;', 1), ('us--the', 1), ('colleague', 1), ('dissent.', 1), ('worse--which', 1), ('windless', 1), ('stationed', 1), ('minutes;', 1), ('alias."', 1), ('one;', 1), ('tenants', 1), ('place--within', 1), ('"pooh,', 1), ('editions.', 1), ('utilise', 1), ('purposes.', 1), ('dun', 1), ('sportsman;', 1), ('fulfill', 1), ('gown', 1), ('difficulties."', 1), ("'cabin'--a", 1), ('aspired', 1), ("all.'", 1), ('once--p.', 1), ('solemnly,', 1), ('suddenly."', 1), ('fade', 1), ("'here's", 1), ('"started', 1), ('sportsman,', 1), ('sallow-skinned,', 1), ('trunk,', 1), ('southampton.', 1), ('consultant,', 1), ('liverpool', 1), ('mister,', 1), ('berth', 1), ('humiliation?"', 1), ('foreseen.', 1), ('kindliness', 1), ('dupe', 1), ('frockcoat', 1), ('lawyers', 1), ('"\'pretty', 1), ('incident."', 1), ('bellinger!', 1), ('"\'december', 1), ("meetings,'", 1), ('two?"', 1), ("possession.'", 1), ('symmetry,', 1), ('offended', 1), ('distinctive."', 1), ('15.', 1), ('stirred.', 1), ('words;', 1), ('crane', 1), ('manufactured', 1), ('spatulate', 1), ('horses?"', 1), ('borough.', 1), ('danger--ever', 1), ('rigmarole', 1), ('mournfully.', 1), ('solicitor.', 1), ("mawson's.'", 1), ('stop."', 1), ('craved', 1), ('nodded,', 1), ("plover's", 1), ('swan.', 1), ('station-master.', 1), ('gild', 1), ('rests', 1), ('suspended', 1), ('"tut-tut!', 1), ('inexperienced,', 1), ('menaced.', 1), ("someone's", 1), ("over.'", 1), ('trap-door', 1), ('holborn.', 1), ('abilities', 1), ('brooding.', 1), ('convict?"', 1), ('note:', 1), ('qualities.', 1), ('detached', 1), ('"argentine,"', 1), ('gold-mine.', 1), ('"colour', 1), ('maturing.', 1), ('beget', 1), ('pencils', 1), ('mask,', 1), ('uffa,', 1), ('kit,', 1), ('dissipated,', 1), ('other--witness', 1), ('pipes--i', 1), ('indian--a', 1), ('cravat?"', 1), ('lashes.', 1), ("brixton,'", 1), ('lace--he', 1), ('busses,', 1), ('verner', 1), ('loose?', 1), ('bond?', 1), ('enforcing', 1), ("apart.'", 1), ('jobs,', 1), ('sacked', 1), ('rectify.', 1), ('evans,', 1), ('heaped-up', 1), ('unwarlike', 1), ("abbey's", 1), ('glass-cutter,', 1), ('her!', 1), ('easterly', 1), ('utterly.', 1), ('henry!', 1), ('witnesses."', 1), ('seal,', 1), ('acid', 1), ('moved."', 1), ('jaws.', 1), ('pity.', 1), ('boldest,', 1), ('"\'almost', 1), ('quill-pen,', 1), ('analysis.', 1), ('emergency,', 1), ('blankly', 1), ('drama."', 1), ('house-maid;', 1), ('oakington', 1), ('undulating', 1), ('charities', 1), ('"l.', 1), ('resource.', 1), ('july,', 1), ('wages?"', 1), ('goatee', 1), ('forgiveness', 1), ('looked.', 1), ('appearance?', 1), ('fraud,', 1), ('ill-luck', 1), ('mincing', 1), ('assailants', 1), ('wig,', 1), ("'supply", 1), ('conjectured,', 1), ('treasury', 1), ('also!', 1), ('thornbush', 1), ('principal.', 1), ('editor', 1), ('hysterics,', 1), ('success?"', 1), ('devon.', 1), ("nights'", 1), ('manner,"', 1), ("close.'", 1)]
Wordnet es una red semántica para el inglés. En esencia, es similar a un diccionario pero está organizado por synsets (conjunto de palabras sinónimas) y no por lemas.
Podemos acceder a WordNet a través de NLTK, de manera similar a como accedemos desde el interfaz web:
In [32]:
from nltk.corpus import wordnet as wn
Para consultar los synsets en los que aparece una determinada palabra, podemos utilizar el método .synsets como se muestra en el ejemplo. Como resultado obtenemos una lista con todos los synsets en los que aparece la palabra.
In [33]:
# buscamos los synsets en los que aparece la palabra sword
print(wn.synsets('sword'))
# y buscamos car
print(wn.synsets('car'))
[Synset('sword.n.01')]
[Synset('car.n.01'), Synset('car.n.02'), Synset('car.n.03'), Synset('car.n.04'), Synset('cable_car.n.01')]
En este caso, la palabra sword solo aparece en un synset, lo que implica que solo tiene un sentido. Además, sabemos que es un sustantivo, porque el nombre de synset está etiquetado como n.
Por su parte, la palabra car es polisémica y aparece en cinco sentidos, toso ellos sustantivos.
Si guardo el synset en cuestión en una variable (fíjate que me quedo con el primer elemento de la lista que me devuelve el método wn.synsets), podemos acceder a distintos métodos:
In [34]:
sword = wn.synsets('sword')[0]
print(sword.lemma_names()) # imprime los lemas del synset => sinónimos
print(sword.definition()) # imprime la definición del synset
# hacemos lo mismo con car
car = wn.synsets('car')
cable_car = car[-1]
print(cable_car.lemma_names(), cable_car.definition())
print(car[-1].lemma_names(), car[-1].definition()) # esta línea es equivalente a la anterior. ¿Ves por qué?
# imprimo las oraciones de ejemplo
print(cable_car.examples())
['sword', 'blade', 'brand', 'steel']
a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard
['cable_car', 'car'] a conveyance for passengers or freight on a cable railway
['cable_car', 'car'] a conveyance for passengers or freight on a cable railway
['they took a cable car to the top of the mountain']
Si escribes sword. y pulsas el tabulador podrás visualizar todos los métodos accesibles desde un objeto synset. Son muchos: si tienes interés en alguno que no se menciona en este resumen, pregúntame o consulta el libro de NLTK.
Entre las cosas que sí nos interesan está el poder acceder a relaciones como hiponimia, meronimia, etc. Por ejemplo, para acceder a todos los hipónimos de sword con el sentido de espada, es decir, a todos los tipos de espada y a sus definiciones.
In [35]:
print(sword.hyponyms())
for element in sword.hyponyms():
print(element.lemma_names())
print(element.definition())
[Synset('backsword.n.02'), Synset('broadsword.n.01'), Synset('cavalry_sword.n.01'), Synset('cutlas.n.01'), Synset('falchion.n.01'), Synset('fencing_sword.n.01'), Synset('rapier.n.01')]
['backsword']
a sword with only one cutting edge
['broadsword']
a sword with a broad blade and (usually) two cutting edges; used to cut rather than stab
['cavalry_sword', 'saber', 'sabre']
a stout sword with a curved blade and thick back
['cutlas', 'cutlass']
a short heavy curved sword with one edge; formerly used by sailors
['falchion']
a short broad slightly convex medieval sword with a sharp point
['fencing_sword']
a sword used in the sport of fencing
['rapier', 'tuck']
a straight sword with a narrow blade and two edges
En lugar de bajar hasta los elementos más específicos, podemos navegar en la jerarquía de sentidos hasta los synsets más generales. Por ejemplo, podemos acceder a los hiperónimos inmediatos de un synset a través del método .hypernyms():
In [36]:
for element in sword.hypernyms():
print(element.lemma_names())
print(element.definition())
['weapon', 'arm', 'weapon_system']
any instrument or instrumentality used in fighting or hunting
Fíjate que con este método sólo subimos un nivel hacia el synset más general. En este caso, comprobamos que sword es un tipo de weapon o arm. Si, por el contrario, lo que nos interesa es acceder a todos los hiperónimos de sword, navegando hasta el elemento raíz de la jerarquía de WordNet (que siempre es entity), podemos utilizar el método .hypernym_paths():
In [37]:
for path in sword.hypernym_paths():
for element in path:
print(element.lemma_names())
print(element.definition())
['entity']
that which is perceived or known or inferred to have its own distinct existence (living or nonliving)
['physical_entity']
an entity that has physical existence
['object', 'physical_object']
a tangible and visible entity; an entity that can cast a shadow
['whole', 'unit']
an assemblage of parts that is regarded as a single entity
['artifact', 'artefact']
a man-made object taken as a whole
['instrumentality', 'instrumentation']
an artifact (or system of artifacts) that is instrumental in accomplishing some end
['device']
an instrumentality invented for a particular purpose
['instrument']
a device that requires skill for proper use
['weapon', 'arm', 'weapon_system']
any instrument or instrumentality used in fighting or hunting
['sword', 'blade', 'brand', 'steel']
a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard
Fíjate que .hypernym_paths() me devuelve una lista de caminos posibles desde el synset en cuestión hasta el elemento entity. Por eso itero sobre los elementos path que me devuelve .hypernym_paths(). En el ejemplo de sword, da la casualidad de que solo hay un camino posible. Cada path es una lista de synsets, e itero sobre ellos. Por eso utilizo un bucle dentro de otro.
Para acceder a los merónimos, es decir, a las partes o elementos constitutivos de sword, podemos utilizar el método .part_meronyms(), como se muestra a continuación.
In [38]:
for element in sword.part_meronyms():
print(element.lemma_names())
print(element.definition())
['blade']
the flat part of a tool or weapon that (usually) has a cutting edge
['foible']
the weaker part of a sword's blade from the forte to the tip
['forte']
the stronger part of a sword blade between the hilt and the foible
['haft', 'helve']
the handle of a weapon or tool
['hilt']
the handle of a sword or dagger
['point', 'tip', 'peak']
a V shape
De manera similar, podemos acceder a los holónimos de un synset, es decir, a los elementos de los que espada forma parte, a través del método .part_holonyms(). El synset que estamos utilizando no tiene definidos holónimos, así que el ejemplo devuelve una lista vacía.
In [39]:
print(sword.part_holonyms())
[]
Busquemos ahora algún ejemplo que tenga otros tipos de merónimos.
In [40]:
# en cuántos synsets aparece la palabra water?
water = wn.synsets('water')
for synset in water:
print(synset.lemma_names())
# me quedo con el primero
agua = water[0]
# que tiene unos cuantos merónimos de sustancia
print(agua.substance_meronyms())
# ídem para air
air = wn.synsets('air')
for synset in air:
print(synset.lemma_names(), synset.definition())
aire = air[0]
print(aire.substance_meronyms())
['water', 'H2O']
['body_of_water', 'water']
['water']
['water_system', 'water_supply', 'water']
['urine', 'piss', 'pee', 'piddle', 'weewee', 'water']
['water']
['water', 'irrigate']
['water']
['water']
['water']
[Synset('hydrogen.n.01'), Synset('oxygen.n.01')]
['air'] a mixture of gases (especially oxygen) required for breathing; the stuff that the wind consists of
['air'] the region above the ground
['air', 'aura', 'atmosphere'] a distinctive but intangible quality surrounding a person or thing
['breeze', 'zephyr', 'gentle_wind', 'air'] a slight wind (usually refreshing)
['atmosphere', 'air'] the mass of air surrounding the Earth
['air'] once thought to be one of four elements composing the universe (Empedocles)
['tune', 'melody', 'air', 'strain', 'melodic_line', 'line', 'melodic_phrase'] a succession of notes forming a distinctive sequence
['air', 'airwave'] medium for radio and television broadcasting
['air_travel', 'aviation', 'air'] travel via aircraft
['air_out', 'air', 'aerate'] expose to fresh air
['air'] be broadcast
['air', 'send', 'broadcast', 'beam', 'transmit'] broadcast over the airwaves, as in radio or television
['publicize', 'publicise', 'air', 'bare'] make public
['air'] expose to warm or heated air, so as to dry
['vent', 'ventilate', 'air_out', 'air'] expose to cool or cold air so as to cool or freshen
[Synset('argon.n.01'), Synset('krypton.n.01'), Synset('neon.n.01'), Synset('nitrogen.n.01'), Synset('oxygen.n.01'), Synset('xenon.n.01')]
Hay varios métodos para acceder a distintos tipos de merónimos y holónimos, aunque no siempre están definidas estas relaciones. Cuando no están definidas, los métodos no dan error, simplemente devuelven listas vacías.
Los nombres de estos métodos tratan de ser autoexplicativos: por un lado, tenemos .part_holonyms(), .member_holonyms(), .substance_holonyms(), y por otro, .part_meronyms(), .member_meronyms(), .substance_meronyms().
In [ ]:
Content source: vitojph/kschool-nlp
Similar notebooks: